aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJorge Arellano Cid <jcid@dillo.org>2009-05-13 13:05:29 -0400
committerJorge Arellano Cid <jcid@dillo.org>2009-05-13 13:05:29 -0400
commitdc3cbe5edeadf61499d2fcf0ae6e52fb895295ff (patch)
tree2a0ece2fa7adb63d12cec57fec46013c63c804f2
parentfbd6b92c3c677010159c43f49d9fe0d00742ce50 (diff)
Silence the last image-debugging messages
-rw-r--r--src/gif.c4
-rw-r--r--src/jpeg.c4
-rw-r--r--src/png.c4
3 files changed, 6 insertions, 6 deletions
diff --git a/src/gif.c b/src/gif.c
index 651723f5..d048e706 100644
--- a/src/gif.c
+++ b/src/gif.c
@@ -153,7 +153,7 @@ static size_t Gif_process_bytes(DilloGif *gif, const uchar_t *buf,
void *a_Gif_new(DilloImage *Image, DilloUrl *url, int version)
{
DilloGif *gif = dMalloc(sizeof(DilloGif));
- MSG("a_Gif_new: gif=%p\n", gif);
+ _MSG("a_Gif_new: gif=%p\n", gif);
gif->Image = Image;
gif->url = url;
@@ -181,7 +181,7 @@ static void Gif_free(DilloGif *gif)
{
int i;
- MSG("Gif_free: gif=%p\n", gif);
+ _MSG("Gif_free: gif=%p\n", gif);
dFree(gif->linebuf);
if (gif->spill_lines != NULL) {
diff --git a/src/jpeg.c b/src/jpeg.c
index 4be3cc09..212b61f6 100644
--- a/src/jpeg.c
+++ b/src/jpeg.c
@@ -98,7 +98,7 @@ METHODDEF(void) Jpeg_errorexit (j_common_ptr cinfo)
*/
static void Jpeg_free(DilloJpeg *jpeg)
{
- MSG("Jpeg_free: jpeg=%p\n", jpeg);
+ _MSG("Jpeg_free: jpeg=%p\n", jpeg);
jpeg_destroy_decompress(&(jpeg->cinfo));
dFree(jpeg);
}
@@ -183,7 +183,7 @@ void *a_Jpeg_new(DilloImage *Image, DilloUrl *url, int version)
{
my_source_mgr *src;
DilloJpeg *jpeg = dMalloc(sizeof(*jpeg));
- MSG("a_Jpeg_new: jpeg=%p\n", jpeg);
+ _MSG("a_Jpeg_new: jpeg=%p\n", jpeg);
jpeg->Image = Image;
jpeg->url = url;
diff --git a/src/png.c b/src/png.c
index 082723a4..c1257119 100644
--- a/src/png.c
+++ b/src/png.c
@@ -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;