aboutsummaryrefslogtreecommitdiffstats
path: root/android/utils/system.c
diff options
context:
space:
mode:
Diffstat (limited to 'android/utils/system.c')
-rw-r--r--android/utils/system.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/android/utils/system.c b/android/utils/system.c
index e65c602..6a6a4e1 100644
--- a/android/utils/system.c
+++ b/android/utils/system.c
@@ -67,7 +67,7 @@ android_realloc( void* block, size_t size )
if (block2 != NULL)
return block2;
- fprintf(stderr, "PANIC: not enough memory to reallocate %lld bytes\n", (uint64_t)size);
+ fprintf(stderr, "PANIC: not enough memory to reallocate %zu bytes\n", size);
exit(1);
return NULL;
}