From 53ed3be0463522cc3f8028def453c78be10f165b Mon Sep 17 00:00:00 2001 From: Christophe Fergeau Date: Fri, 24 Jul 2009 21:35:13 +0200 Subject: fix most -Wall warnings add missing includes, add some casts to avoid format warnings, mark one function as static. There are still warnings about unused argc/argv [#61 state:resolved] Signed-off-by: Matt Colyer --- dev/iphoneinfo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'dev/iphoneinfo.c') diff --git a/dev/iphoneinfo.c b/dev/iphoneinfo.c index 3dfda5d..9d690f9 100644 --- a/dev/iphoneinfo.c +++ b/dev/iphoneinfo.c @@ -206,7 +206,7 @@ void plist_node_to_string(plist_t *node) case PLIST_UINT: plist_get_uint_val(node, &u); - printf("%llu\n", u); + printf("%llu\n", (long long)u); break; case PLIST_REAL: -- cgit v1.1-32-gdbae