bug 453889: Correct prbool misuse in spidermonkey

This commit is contained in:
Taras Glek
2008-09-08 13:41:09 -07:00
parent c741712679
commit ea9b92b1ba
6 changed files with 14 additions and 13 deletions

View File

@@ -1782,7 +1782,8 @@ array_sort(JSContext *cx, uintN argc, jsval *vp)
CompareArgs ca;
jsuint len, newlen, i, undefs;
JSTempValueRooter tvr;
JSBool hole, ok;
JSBool hole;
bool ok;
size_t elemsize;
JSString *str;