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

Fix msvc6 reported warnings.

parent 8a5df29d
No related branches found
No related tags found
No related merge requests found
......@@ -712,7 +712,7 @@ js_conio_gettext(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *r
if(argc > 4)
return(JS_FALSE);
for(i=0; i<argc; i++) {
for(i=0; i<(int)argc; i++) {
if(!JSVAL_IS_NUMBER(argv[i]))
return(JS_FALSE);
if(!JS_ValueToInt32(cx, argv[i], &args[i]))
......
......@@ -1070,6 +1070,9 @@ extern "C" {
/* js_uifc.c */
JSObject* js_CreateUifcObject(JSContext* cx, JSObject* parent);
/* js_conio.c */
JSObject* js_CreateConioObject(JSContext* cx, JSObject* parent);
#endif
/* str_util.c */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment