summaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
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