summaryrefslogtreecommitdiff
path: root/src/decode.c
diff options
context:
space:
mode:
authorjcid <devnull@localhost>2008-06-27 20:21:53 +0200
committerjcid <devnull@localhost>2008-06-27 20:21:53 +0200
commit8d56726d8e2d461cee1af1e1d90b4c2bb36fd987 (patch)
tree3d5a6b33504ba4d9e091ff26aa310a50de6b0f32 /src/decode.c
parent7add00a49f2514e029c5537bc4c27e26185927c2 (diff)
- enabled prefs.vw_fontname + minor cleanup.
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);