summaryrefslogtreecommitdiff
path: root/render/image.c
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2008-02-14 14:57:02 -0500
committerDana Jansens <danakj@orodu.net>2008-02-14 15:10:14 -0500
commit3f62e77dea46abaa08584cf5344b2d95a6c4c220 (patch)
treec7fce9fb1e5b42939f4758e0ce3ad1c2e7f12ffd /render/image.c
parent66a897d9b24682e9d243e4d452800b8a5c1237f6 (diff)
don't use \n at the end of g_message strings
Diffstat (limited to 'render/image.c')
-rw-r--r--render/image.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/render/image.c b/render/image.c
index c7452fce..6fbd8a8e 100644
--- a/render/image.c
+++ b/render/image.c
@@ -75,7 +75,7 @@ static void AddPicture(RrImage *self, RrImagePic ***list, gint *len,
#ifdef DEBUG
g_message("Adding %s picture to the cache:\n "
- "Image 0x%x, w %d h %d Hash %u\n",
+ "Image 0x%x, w %d h %d Hash %u",
(*list == self->original ? "ORIGINAL" : "RESIZED"),
(guint)self, pic->width, pic->height, RrImagePicHash(pic));
#endif
@@ -90,7 +90,7 @@ static void RemovePicture(RrImage *self, RrImagePic ***list,
#ifdef DEBUG
g_message("Removing %s picture from the cache:\n "
- "Image 0x%x, w %d h %d Hash %u\n",
+ "Image 0x%x, w %d h %d Hash %u",
(*list == self->original ? "ORIGINAL" : "RESIZED"),
(guint)self, (*list)[i]->width, (*list)[i]->height,
RrImagePicHash((*list)[i]));
@@ -324,7 +324,7 @@ void RrImageUnref(RrImage *self)
if (self && --self->ref == 0) {
#ifdef DEBUG
g_message("Refcount to 0, removing ALL pictures from the cache:\n "
- "Image 0x%x\n", (guint)self);
+ "Image 0x%x", (guint)self);
#endif
while (self->n_original > 0)
RemovePicture(self, &self->original, 0, &self->n_original);
@@ -347,7 +347,7 @@ void RrImageAddPicture(RrImage *self, RrPixel32 *data, gint w, gint h)
if (self->original[i]->width == w && self->original[i]->height == h) {
#ifdef DEBUG
g_message("Found duplicate ORIGINAL image:\n "
- "Image 0x%x, w %d h %d\n", (guint)self, w, h);
+ "Image 0x%x, w %d h %d", (guint)self, w, h);
#endif
return;
}