diff options
author | Jorge Arellano Cid <jcid@dillo.org> | 2009-05-13 13:05:29 -0400 |
---|---|---|
committer | Jorge Arellano Cid <jcid@dillo.org> | 2009-05-13 13:05:29 -0400 |
commit | dc3cbe5edeadf61499d2fcf0ae6e52fb895295ff (patch) | |
tree | 2a0ece2fa7adb63d12cec57fec46013c63c804f2 /src/png.c | |
parent | fbd6b92c3c677010159c43f49d9fe0d00742ce50 (diff) |
Silence the last image-debugging messages
Diffstat (limited to 'src/png.c')
-rw-r--r-- | src/png.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -295,7 +295,7 @@ static void Png_dataend_callback(png_structp png_ptr, png_infop info_ptr) */ static void Png_free(DilloPng *png) { - MSG("Png_free: png=%p\n", png); + _MSG("Png_free: png=%p\n", png); dFree(png->image_data); dFree(png->row_pointers); @@ -429,7 +429,7 @@ void a_Png_callback(int Op, void *data) void *a_Png_new(DilloImage *Image, DilloUrl *url, int version) { DilloPng *png = dNew0(DilloPng, 1); - MSG("a_Png_new: png=%p\n", png); + _MSG("a_Png_new: png=%p\n", png); png->Image = Image; png->url = url; |