From 60cb2c37201a453a76ea12e4d4b48f7b34ebef2c Mon Sep 17 00:00:00 2001 From: Ruediger Meier Date: Fri, 30 May 2014 01:18:09 +0200 Subject: build: fix some compiler warnings Most of them catched on 32bit gcc and icc. disk-utils/fsck.cramfs.c: printf format type lib/boottime.c: unused variables misc-utils/cal.c: set but never used sys-utils/losetup.c: set but never used sys-utils/lscpu-dmi.c: defined but not used sys-utils/switch_root.c: comparison between signed and unsigned tests/helpers/test_sysinfo.c: printf format type --- tests/helpers/test_sysinfo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/helpers') diff --git a/tests/helpers/test_sysinfo.c b/tests/helpers/test_sysinfo.c index 3983f28ef..ce7bc081a 100644 --- a/tests/helpers/test_sysinfo.c +++ b/tests/helpers/test_sysinfo.c @@ -27,7 +27,7 @@ typedef struct { static int hlp_wordsize(void) { - printf("%lu\n", CHAR_BIT * sizeof(void*)); + printf("%zu\n", CHAR_BIT * sizeof(void*)); return 0; } -- cgit v1.2.3-55-g7522