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

Fix invalid type in argument to printf format specifier

CID 319142
parent 5661607e
No related branches found
No related tags found
1 merge request!463MRC mods by Codefenix (2024-10-20)
......@@ -177,7 +177,7 @@ js_send(JSContext *cx, uintN argc, jsval *arglist)
JS_SET_RVAL(cx, arglist, JSVAL_TRUE);
} else {
p->last_error=COM_ERROR_VALUE;
dbprintf(TRUE, p, "send of %u bytes failed",len);
dbprintf(TRUE, p, "send of %lu bytes failed",len);
}
if(cp)
free(cp);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment