summaryrefslogtreecommitdiff
path: root/render/image.c
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2009-11-21 14:29:45 -0500
committerDana Jansens <danakj@orodu.net>2009-11-21 14:39:54 -0500
commit44df758d6b7a0f268118275cfc44b885f83f784c (patch)
tree24fd3ae791125a913ef0a1c5a11c7a4540da88ff /render/image.c
parent2972e2f728aae0ebd4a689628856a8e6d4295bac (diff)
Pointers are long-sized on x86_64.
Diffstat (limited to 'render/image.c')
-rw-r--r--render/image.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/render/image.c b/render/image.c
index 0ab21374..fc30714e 100644
--- a/render/image.c
+++ b/render/image.c
@@ -75,9 +75,9 @@ static void AddPicture(RrImage *self, RrImagePic ***list, gint *len,
#ifdef DEBUG
g_debug("Adding %s picture to the cache:\n "
- "Image 0x%x, w %d h %d Hash %u",
+ "Image 0x%lx, w %d h %d Hash %u",
(*list == self->original ? "ORIGINAL" : "RESIZED"),
- (guint)self, pic->width, pic->height, RrImagePicHash(pic));
+ (gulong)self, pic->width, pic->height, RrImagePicHash(pic));
#endif
}
@@ -90,9 +90,9 @@ static void RemovePicture(RrImage *self, RrImagePic ***list,
#ifdef DEBUG
g_debug("Removing %s picture from the cache:\n "
- "Image 0x%x, w %d h %d Hash %u",
+ "Image 0x%lx, w %d h %d Hash %u",
(*list == self->original ? "ORIGINAL" : "RESIZED"),
- (guint)self, (*list)[i]->width, (*list)[i]->height,
+ (gulong)self, (*list)[i]->width, (*list)[i]->height,
RrImagePicHash((*list)[i]));
#endif
@@ -331,7 +331,7 @@ void RrImageUnref(RrImage *self)
if (self && --self->ref == 0) {
#ifdef DEBUG
g_debug("Refcount to 0, removing ALL pictures from the cache:\n "
- "Image 0x%x", (guint)self);
+ "Image 0x%lx", (gulong)self);
#endif
while (self->n_original > 0)
RemovePicture(self, &self->original, 0, &self->n_original);
@@ -354,7 +354,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_debug("Found duplicate ORIGINAL image:\n "
- "Image 0x%x, w %d h %d", (guint)self, w, h);
+ "Image 0x%lx, w %d h %d", (gulong)self, w, h);
#endif
return;
}