aboutsummaryrefslogtreecommitdiff
path: root/src/decode.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/decode.c')
-rw-r--r--src/decode.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/decode.c b/src/decode.c
index af1d578d..a94156d0 100644
--- a/src/decode.c
+++ b/src/decode.c
@@ -194,7 +194,7 @@ Decode *a_Decode_transfer_init(const char *format)
dc->decode = Decode_chunked;
dc->free = Decode_chunked_free;
dc->buffer = NULL; /* not used */
- MSG("chunked!\n");
+ _MSG("chunked!\n");
}
return dc;
}
@@ -210,7 +210,7 @@ Decode *a_Decode_content_init(const char *format)
Decode *dc = NULL;
if (format && !dStrcasecmp(format, "gzip")) {
- MSG("gzipped data!\n");
+ _MSG("gzipped data!\n");
z_stream *zs;
dc = dNew(Decode, 1);