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

Add missing paren

parent 1c1dbf2f
No related branches found
No related tags found
No related merge requests found
Pipeline #7765 passed
......@@ -1293,7 +1293,7 @@ js_datestr(JSContext *cx, uintN argc, jsval *arglist)
}
JS_ValueToECMAUint32(cx,argv[0],(uint32_t*)&t);
}
if((js_str = JS_NewStringCopyZ(cx, datestr(sys->cfg, t, str))==NULL)
if((js_str = JS_NewStringCopyZ(cx, datestr(sys->cfg, t, str)))==NULL)
return(JS_FALSE);
JS_SET_RVAL(cx, arglist, STRING_TO_JSVAL(js_str));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment