We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d4fbf9c commit 6b26ae9Copy full SHA for 6b26ae9
src/pacparse.c
@@ -285,8 +285,8 @@ int main(int argc, char* argv[])
285
}
286
script = realloc(script, script_size);
287
if (script == NULL) {
288
- fprintf(stderr, "%s: Failed to realloc %d bytes memory for the script %s\n",
289
- progname, script_size);
+ fprintf(stderr, "%s: Failed to realloc %d bytes of memory for the script %s\n",
+ progname, (int)script_size, script);
290
free(old);
291
return 1;
292
0 commit comments