[git commit] test: Fix some warnings in inet

Bernhard Reutner-Fischer rep.dot.nop at gmail.com
Mon Oct 29 12:16:02 UTC 2012


commit: http://git.uclibc.org/uClibc/commit/?id=0f9734f891b92a277a230ba81c1ec0c775208942
branch: http://git.uclibc.org/uClibc/commit/?id=refs/heads/master

Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop at gmail.com>
---
 test/inet/gethostid.c |    2 +-
 test/inet/getnetent.c |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/test/inet/gethostid.c b/test/inet/gethostid.c
index 2951665..1b9af86 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;
 }
diff --git a/test/inet/getnetent.c b/test/inet/getnetent.c
index 6607cea..1f55e43 100644
--- a/test/inet/getnetent.c
+++ b/test/inet/getnetent.c
@@ -8,7 +8,7 @@ int main(void)
 		while (net->n_net && !((net->n_net >> 24) & 0xff)) {
 			net->n_net <<= 8;
 		}
-		printf("%lu.%lu.%lu.%lu\n",
+		printf("%u.%u.%u.%u\n",
 			   (net->n_net >> 24) & 0xff, (net->n_net >> 16) & 0xff,
 			   (net->n_net >> 8) & 0xff, net->n_net & 0xff);
 	}


More information about the uClibc-cvs mailing list