summaryrefslogtreecommitdiff
path: root/test/inet/gethostid.c
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2012-10-29 13:16:02 +0100
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2012-10-29 13:16:02 +0100
commit0f9734f891b92a277a230ba81c1ec0c775208942 (patch)
tree80bb935fb816b8bc9b2c7a7ba8a134c798a7c7ca /test/inet/gethostid.c
parent525a5a614df776ae894596147ec136e303c048e3 (diff)
test: Fix some warnings in inet
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'test/inet/gethostid.c')
-rw-r--r--test/inet/gethostid.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/inet/gethostid.c b/test/inet/gethostid.c
index 295166536..1b9af86b7 100644
--- a/test/inet/gethostid.c
+++ b/test/inet/gethostid.c
@@ -1,6 +1,6 @@
#include <unistd.h>
#include <stdio.h>
int main(void) {
- printf("hostid=%d\n", gethostid());
+ printf("hostid=%ld\n", gethostid());
return 0;
}