summaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authorDavid Sommerseth <dazo@users.sourceforge.net>2009-10-05 17:32:09 +0200
committerDavid Sommerseth <dazo@users.sourceforge.net>2009-10-05 17:32:09 +0200
commit472406edf0ab36be0b784384a438ef483a6233dc (patch)
treec4cce887e0374149179961380e083fb8c5e278e1 /common
parent164032f3fcf86d4f08244764aab1b68a0fb6c71e (diff)
downloadeurephia-472406edf0ab36be0b784384a438ef483a6233dc.tar.gz
eurephia-472406edf0ab36be0b784384a438ef483a6233dc.tar.xz
eurephia-472406edf0ab36be0b784384a438ef483a6233dc.zip
Fixed compile warnings 32bit platforms
Diffstat (limited to 'common')
-rw-r--r--common/eurephia_nullsafe.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/eurephia_nullsafe.c b/common/eurephia_nullsafe.c
index 5f507c3..17b808a 100644
--- a/common/eurephia_nullsafe.c
+++ b/common/eurephia_nullsafe.c
@@ -69,7 +69,7 @@ __malloc__ void *_malloc_nullsafe(eurephiaCTX *ctx, size_t sz, const char *file,
} else {
fprintf(stderr, "** FATAL ERROR ** "
"Could not allocate memory region for %ld bytes (File %s, line %i)",
- sz, file, line);
+ (unsigned long int) sz, file, line);
}
}
#ifdef DEBUG