From: Jens Axboe Date: Fri, 3 Jul 2015 20:26:08 +0000 (-0600) Subject: t/debug: fix 'fio_debug' declaration X-Git-Tag: fio-2.2.10~47 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=56d50ff3fccfd841921c799f6958ca1e33483959;hp=a640ed36829f3be6d9dd8c7974dba41b9b59e6a5;p=fio.git t/debug: fix 'fio_debug' declaration debug.h:38:22: warning: type of ‘fio_debug’ does not match original declaration extern unsigned long fio_debug; ^ t/debug.c:5:14: note: previously declared here unsigned int fio_debug = 0; Signed-off-by: Jens Axboe --- diff --git a/t/debug.c b/t/debug.c index c297d615..bf6f4605 100644 --- a/t/debug.c +++ b/t/debug.c @@ -2,7 +2,7 @@ FILE *f_err; struct timeval *fio_tv = NULL; -unsigned int fio_debug = 0; +unsigned long fio_debug = 0; void __dprint(int type, const char *str, ...) {