diff options
author | Jeremy Henty <onepoint@starurchin.org> | 2009-05-11 08:36:12 -0400 |
---|---|---|
committer | Jeremy Henty <onepoint@starurchin.org> | 2009-05-11 08:36:12 -0400 |
commit | 352a51311130973ccb76582962c19147c9e5862d (patch) | |
tree | 48a84bd52e028475d929ffdd2c22f47209b9085c /src/gif.c | |
parent | 0f89ec903d2665700edd55a91c25acfeba20a3b6 (diff) |
Cleanup: image debugging messages
Diffstat (limited to 'src/gif.c')
-rw-r--r-- | src/gif.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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("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) { |