all repos — openbox @ 44df758d6b7a0f268118275cfc44b885f83f784c

openbox fork - make it a bit more like ryudo

Pointers are long-sized on x86_64.
Dana Jansens danakj@orodu.net
commit

44df758d6b7a0f268118275cfc44b885f83f784c

parent

2972e2f728aae0ebd4a689628856a8e6d4295bac

1 files changed, 6 insertions(+), 6 deletions(-)

jump to
M render/image.crender/image.c

@@ -75,9 +75,9 @@ g_hash_table_insert(self->cache->table, (*list)[0], self);

#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 @@ gint j;

#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 @@ {

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 @@ for (i = 0; i < self->n_original; ++i)

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; }