aboutsummaryrefslogtreecommitdiff
path: root/src/gif.c
diff options
context:
space:
mode:
authorJeremy Henty <onepoint@starurchin.org>2009-05-11 08:36:12 -0400
committerJeremy Henty <onepoint@starurchin.org>2009-05-11 08:36:12 -0400
commit352a51311130973ccb76582962c19147c9e5862d (patch)
tree48a84bd52e028475d929ffdd2c22f47209b9085c /src/gif.c
parent0f89ec903d2665700edd55a91c25acfeba20a3b6 (diff)
Cleanup: image debugging messages
Diffstat (limited to 'src/gif.c')
-rw-r--r--src/gif.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gif.c b/src/gif.c
index 85e57584..651723f5 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("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) {