Skip to content
Snippets Groups Projects
Commit 00e01e80 authored by deuce's avatar deuce
Browse files

Fix warnings.

parent 7ec6530a
No related branches found
No related tags found
No related merge requests found
......@@ -232,7 +232,7 @@ void read_echo_cfg()
if(!stricmp(tmp,"PACKER")) { /* Archive Definition */
if((cfg.arcdef=(arcdef_t *)realloc(cfg.arcdef
,sizeof(arcdef_t)*(cfg.arcdefs+1)))==NULL) {
printf("\nError allocating %u bytes of memory for arcdef #%u.\n"
printf("\nError allocating %" XP_PRIsize_t "u bytes of memory for arcdef #%u.\n"
,sizeof(arcdef_t)*(cfg.arcdefs+1),cfg.arcdefs+1);
bail(1); }
SAFECOPY(cfg.arcdef[cfg.arcdefs].name,p);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment