From 14912f87c6dc2ebcc54771c92558652ae486b089 Mon Sep 17 00:00:00 2001 From: Christophe Fergeau Date: Fri, 11 Mar 2011 20:38:57 +0100 Subject: Wrap debug_print_line in #ifndef STRIP_DEBUG_CODE This function is only called when STRIP_DEBUG_CODE isn't defined, so build is broken with -Wmissing-prototypes -Werror if it's not wrapped in #ifndef --- src/debug.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/debug.c') diff --git a/src/debug.c b/src/debug.c index f58ece7..26a9678 100644 --- a/src/debug.c +++ b/src/debug.c @@ -46,6 +46,7 @@ void idevice_set_debug_level(int level) debug_level = level; } +#ifndef STRIP_DEBUG_CODE static void debug_print_line(const char *func, const char *file, int line, const char *buffer) { char *str_time = NULL; @@ -73,6 +74,7 @@ static void debug_print_line(const char *func, const char *file, int line, const free (header); } +#endif inline void debug_info_real(const char *func, const char *file, int line, const char *format, ...) { -- cgit v1.1-32-gdbae