From 12a2b8d6e5dda6c9075cfbd6ba0b6c91b7882012 Mon Sep 17 00:00:00 2001 From: Daniel Wagner Date: Sat, 25 Feb 2012 11:34:28 +0000 Subject: [PATCH] changed debug flag to DEBUG_MULTIPART as to avoid spamming console output --- multipart_parser.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/multipart_parser.c b/multipart_parser.c index 2955c1f..60a4eae 100644 --- a/multipart_parser.c +++ b/multipart_parser.c @@ -7,7 +7,7 @@ #include "multipart_parser.h" -#ifdef DEBUG +#ifdef DEBUG_MULTIPART #include #define log(M, ...) fprintf(stderr, "[HTTP_MULTIPART_PARSER] %s:%d: " M "\n", __FILE__, __LINE__, ##__VA_ARGS__) #else