* tests/test-getdate.c (LOG) [!DEBUG]: Mark no-op void.
* tests/uniwidth/test-uc_width2.c (finish_interval): Avoid printf
type mismatches.
Signed-off-by: Eric Blake <ebb9@byu.net>
+2008-12-05 Eric Blake <ebb9@byu.net>
+
+ tests: silence some gcc warnings
+ * tests/test-getdate.c (LOG) [!DEBUG]: Mark no-op void.
+ * tests/uniwidth/test-uc_width2.c (finish_interval): Avoid printf
+ type mismatches.
+
2008-12-03 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
Bruno Haible <bruno@clisp.org>
printf ("string `%s' diff %d %d\n", \
str, res.tv_sec - now.tv_sec, res.tv_nsec - now.tv_nsec);
#else
-#define LOG(str, now, res) 0
+#define LOG(str, now, res) (void) 0
#endif
int
if (current_width != 0)
{
if (current_start == current_end)
- printf ("%04X\t\t%c\n", current_start, current_width);
+ printf ("%04X\t\t%c\n", (unsigned) current_start, current_width);
else
- printf ("%04X..%04X\t%c\n", current_start, current_end, current_width);
+ printf ("%04X..%04X\t%c\n", (unsigned) current_start,
+ (unsigned) current_end, current_width);
current_width = 0;
}
}