ソースを参照

Turn off debug logging in client impl

Accidentally left in #147
Marc Di Luzio 5 年 前
コミット
a5e00bc94e
1 ファイル変更1 行追加1 行削除
  1. 1 1
      lib/client_impl.c

+ 1 - 1
lib/client_impl.c

@@ -67,7 +67,7 @@ POSSIBILITY OF SUCH DAMAGE.
 #define LOG_ERROR fprintf(stderr, "ERROR: %s \n", error_string)
 #endif
 
-#ifdef DO_TRACE
+#if DO_TRACE
 #define TRACE(...) fprintf(stderr, __VA_ARGS__)
 #else
 #define TRACE(...)