#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
#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]));
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);
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;
}