File gq-1.2.3-ia64.diff of Package gq
--- src/debug.c.orig 2004-02-25 16:37:19.000000000 +0000
+++ src/debug.c 2004-02-25 16:39:08.000000000 +0000
@@ -53,8 +53,8 @@
newmem = malloc(size);
#ifdef DEBUG
if (debug & GQ_DEBUG_MALLOC) {
- printf("+ gq_malloc: %s (%d bytes @ 0x%x)\n", msg, size,
- (unsigned int) newmem);
+ printf("+ gq_malloc: %s (%d bytes @ 0x%lx)\n", msg, size,
+ (long int) newmem);
num_mallocs++;
max_mallocs++;
@@ -68,7 +68,7 @@
{
#ifdef DEBUG
if (debug & GQ_DEBUG_MALLOC) {
- printf("- gq_free: %s (0x%x)\n", msg, (unsigned int) mem);
+ printf("- gq_free: %s (0x%lx)\n", msg, (long int) mem);
num_mallocs--;
}
#endif