diff options
Diffstat (limited to 'lang/spidermonkey/files/patch-jscntxt.c')
-rw-r--r-- | lang/spidermonkey/files/patch-jscntxt.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/lang/spidermonkey/files/patch-jscntxt.c b/lang/spidermonkey/files/patch-jscntxt.c deleted file mode 100644 index 91861d195eab..000000000000 --- a/lang/spidermonkey/files/patch-jscntxt.c +++ /dev/null @@ -1,11 +0,0 @@ ---- jscntxt.c.orig Sat Jan 14 01:57:13 2006 -+++ jscntxt.c Sat Jan 14 02:14:51 2006 -@@ -334,7 +334,7 @@ - { - const JSResolvingKey *key = (const JSResolvingKey *)ptr; - -- return ((JSDHashNumber)key->obj >> JSVAL_TAGBITS) ^ key->id; -+ return ((JSDHashNumber)JS_PTR_TO_UINT32(key->obj) >> JSVAL_TAGBITS) ^ key->id; - } - - JS_PUBLIC_API(JSBool) |