Skip to content
Snippets Groups Projects
Commit 5e0f2ad6 authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Fix new GCC warning just introduced in previous commit.

parent 99dbeb14
No related branches found
No related tags found
1 merge request!463MRC mods by Codefenix (2024-10-20)
...@@ -27,7 +27,7 @@ ...@@ -27,7 +27,7 @@
BOOL allocerr(FILE* fp, char* error, size_t maxerrlen, long offset, const char *fname, size_t size) BOOL allocerr(FILE* fp, char* error, size_t maxerrlen, long offset, const char *fname, size_t size)
{ {
safe_snprintf(error, maxerrlen, "offset %ld in %s, allocating %u bytes of memory" safe_snprintf(error, maxerrlen, "offset %ld in %s, allocating %u bytes of memory"
,offset,fname,size); ,offset,fname, (uint)size);
fclose(fp); fclose(fp);
return(FALSE); return(FALSE);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment