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

Typecast to eliminate bcc warning.

parent 3d02f288
Branches
Tags
No related merge requests found
......@@ -394,7 +394,7 @@ js_uifc_list(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval)
}
}
*rval = INT_TO_JSVAL(uifc->list(mode,left,top,width,&dflt,&bar,title,opts));
*rval = INT_TO_JSVAL(uifc->list(mode,left,top,width,(int*)&dflt,(int*)&bar,title,opts));
strListFree(&opts);
return(JS_TRUE);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment