summaryrefslogtreecommitdiffstats
path: root/src/utils.c
diff options
context:
space:
mode:
authorGravatar Jonathan Beck2008-10-25 17:29:29 +0200
committerGravatar Jonathan Beck2008-10-25 17:31:54 +0200
commit0691e6e4cee6f0e54b432fbf0e478d699e964eaf (patch)
tree3a1b9179aaf5a36b8bfb9472c3b38f7326a430fd /src/utils.c
parent113b2250b7d6f075f6b2c3aacae7500ab9f8fb03 (diff)
downloadlibimobiledevice-0691e6e4cee6f0e54b432fbf0e478d699e964eaf.tar.gz
libimobiledevice-0691e6e4cee6f0e54b432fbf0e478d699e964eaf.tar.bz2
add an option to strip off debug code
Diffstat (limited to 'src/utils.c')
-rw-r--r--src/utils.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/utils.c b/src/utils.c
index e54403b..049777a 100644
--- a/src/utils.c
+++ b/src/utils.c
@@ -39,7 +39,7 @@ void iphone_set_debug(int level)
void log_debug_msg(const char *format, ...)
{
-#ifndef STRIP_DEBUG
+#ifndef STRIP_DEBUG_CODE
va_list args;
/* run the real fprintf */
@@ -55,7 +55,7 @@ void log_debug_msg(const char *format, ...)
inline void log_debug_buffer(const char *data, const int length)
{
-#ifndef STRIP_DEBUG
+#ifndef STRIP_DEBUG_CODE
/* run the real fprintf */
if (toto_debug)
@@ -66,7 +66,7 @@ inline void log_debug_buffer(const char *data, const int length)
inline void dump_debug_buffer(const char *file, const char *data, const int length)
{
-#ifndef STRIP_DEBUG
+#ifndef STRIP_DEBUG_CODE
/* run the real fprintf */
if (toto_debug) {