Skip to content
Snippets Groups Projects
Commit 56f573c9 authored by rswindell's avatar rswindell
Browse files

Another gcc printf warning fix.

parent ece4a33f
No related branches found
No related tags found
No related merge requests found
......@@ -1015,7 +1015,7 @@ long js_exec(const char *fname, char** args)
len=strlen(line);
if((js_buf=realloc(js_buf,js_buflen+len))==NULL) {
lprintf(LOG_ERR,"!Error allocating %lu bytes of memory"
,js_buflen+len);
,(ulong)(js_buflen+len));
if(fp!=stdin)
fclose(fp);
return(-1);
......
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