From 69b98d4c9945bed6b3446a9e73bfaf8e557cf033 Mon Sep 17 00:00:00 2001 From: Jens Axboe Date: Fri, 30 May 2008 22:25:32 +0200 Subject: [PATCH] Fix build with FIO_INC_DEBUG not included Signed-off-by: Jens Axboe --- debug.h | 3 ++- init.c | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) 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; -- 2.25.1