diff options
author | 2014-03-11 15:58:45 +0000 | |
---|---|---|
committer | 2014-03-11 15:58:45 +0000 | |
commit | b81f497a931000ed43856db8d1feb7efff652b23 (patch) | |
tree | f22a1af8e29ef7f115ac3f2d558b26144b567384 /src/lib/util/corealloc.c | |
parent | 4ea9df02a1daf1893246a01e21ffe201781f9266 (diff) |
Fix a couple of compile errors, leftover debugging.
Diffstat (limited to 'src/lib/util/corealloc.c')
-rw-r--r-- | src/lib/util/corealloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/util/corealloc.c b/src/lib/util/corealloc.c index 089770b20ed..69535d8d495 100644 --- a/src/lib/util/corealloc.c +++ b/src/lib/util/corealloc.c @@ -104,7 +104,7 @@ void *malloc_file_line(size_t size, const char *file, int line, bool array, bool void *result = array ? osd_malloc_array(size) : osd_malloc(size); if (result == NULL) { - fprintf(stderr, "Failed to allocate %d bytes (%s:%d)\n", size, file, line); + fprintf(stderr, "Failed to allocate %d bytes (%s:%d)\n", UINT32(size), file, line); osd_break_into_debugger("Failed to allocate RAM"); if (throw_on_fail) throw std::bad_alloc(); |