Put JSContext argument back at the end of SameValue (apparently that means something)

This commit is contained in:
Luke Wagner
2010-06-29 02:08:07 -07:00
parent 19920fb42c
commit d0d2e26308
4 changed files with 9 additions and 9 deletions

View File

@@ -513,7 +513,7 @@ JS_StrictlyEqual(JSContext *cx, jsval v1, jsval v2)
JS_PUBLIC_API(JSBool)
JS_SameValue(JSContext *cx, jsval v1, jsval v2)
{
return SameValue(cx, Valueify(v1), Valueify(v2));
return SameValue(Valueify(v1), Valueify(v2), cx);
}
/************************************************************************/