From: Jens Axboe Date: Fri, 30 May 2008 20:25:32 +0000 (+0200) Subject: Fix build with FIO_INC_DEBUG not included X-Git-Tag: fio-1.21-rc4~19 X-Git-Url: https://git.kernel.dk/?p=fio.git;a=commitdiff_plain;h=69b98d4c9945bed6b3446a9e73bfaf8e557cf033 Fix build with FIO_INC_DEBUG not included Signed-off-by: Jens Axboe --- diff --git a/debug.h b/debug.h index 160f48c3..a9e9e935 100644 --- a/debug.h +++ b/debug.h @@ -18,6 +18,8 @@ enum { FD_DEBUG_MAX, }; +extern unsigned int fio_debug_jobno, *fio_debug_jobp; + #ifdef FIO_INC_DEBUG struct debug_level { const char *name; @@ -27,7 +29,6 @@ struct debug_level { extern struct debug_level debug_levels[]; extern unsigned long fio_debug; -extern unsigned int fio_debug_jobno, *fio_debug_jobp; #define dprint(type, str, args...) \ do { \ diff --git a/init.c b/init.c index 00eb592b..71fe4be5 100644 --- a/init.c +++ b/init.c @@ -916,7 +916,7 @@ static int set_debug(const char *string) return 0; } #else -static void set_debug(const char *string) +static int set_debug(const char *string) { log_err("fio: debug tracing not included in build\n"); return 1;