From 56d50ff3fccfd841921c799f6958ca1e33483959 Mon Sep 17 00:00:00 2001 From: Jens Axboe Date: Fri, 3 Jul 2015 14:26:08 -0600 Subject: [PATCH 1/1] t/debug: fix 'fio_debug' declaration MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit 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 --- t/debug.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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, ...) { -- 2.25.1