diff options
| author | 2011-03-11 20:38:57 +0100 | |
|---|---|---|
| committer | 2011-03-12 03:13:21 +0100 | |
| commit | 14912f87c6dc2ebcc54771c92558652ae486b089 (patch) | |
| tree | 5a38af361f71f2be3bb68cafdbc7676ff04dc971 /src | |
| parent | adaa80a31a23d7663be751f4d589adbe5a5f3113 (diff) | |
| download | libimobiledevice-14912f87c6dc2ebcc54771c92558652ae486b089.tar.gz libimobiledevice-14912f87c6dc2ebcc54771c92558652ae486b089.tar.bz2 | |
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
Diffstat (limited to 'src')
| -rw-r--r-- | src/debug.c | 2 |
1 files changed, 2 insertions, 0 deletions
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) | |||
| 46 | debug_level = level; | 46 | debug_level = level; |
| 47 | } | 47 | } |
| 48 | 48 | ||
| 49 | #ifndef STRIP_DEBUG_CODE | ||
| 49 | static void debug_print_line(const char *func, const char *file, int line, const char *buffer) | 50 | static void debug_print_line(const char *func, const char *file, int line, const char *buffer) |
| 50 | { | 51 | { |
| 51 | char *str_time = NULL; | 52 | char *str_time = NULL; |
| @@ -73,6 +74,7 @@ static void debug_print_line(const char *func, const char *file, int line, const | |||
| 73 | 74 | ||
| 74 | free (header); | 75 | free (header); |
| 75 | } | 76 | } |
| 77 | #endif | ||
| 76 | 78 | ||
| 77 | inline void debug_info_real(const char *func, const char *file, int line, const char *format, ...) | 79 | inline void debug_info_real(const char *func, const char *file, int line, const char *format, ...) |
| 78 | { | 80 | { |
