]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
fix linux build
authorMathieu Rene <mrene@avgs.ca>
Tue, 22 Dec 2009 14:39:11 +0000 (14:39 +0000)
committerMathieu Rene <mrene@avgs.ca>
Tue, 22 Dec 2009 14:39:11 +0000 (14:39 +0000)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@16016 d0543943-73ff-0310-b7d9-9358b9ac24b2

src/mod/languages/mod_spidermonkey_core_db/mod_spidermonkey_core_db.c

index 2d9530b8b7c4171eb9a4b4cebe4d1f5d5da2f276..6eeb90519d0004f55e2879daac083b982f06465f 100644 (file)
@@ -312,7 +312,7 @@ static JSBool db_bind_text(JSContext * cx, JSObject * obj, uintN argc, jsval * a
        
 
        /* convert args */
-       status = JS_ValueToECMAUint32(cx, argv[0], &(uint32)param_index);
+       status = JS_ValueToECMAUint32(cx, argv[0], (uint32_t*)&param_index);
        switch_assert(status == JS_TRUE);
     param_value = JS_GetStringBytes(JS_ValueToString(cx, argv[1]));
        if ((param_index < 1) || (NULL == param_value)) {
@@ -356,9 +356,9 @@ static JSBool db_bind_int(JSContext * cx, JSObject * obj, uintN argc, jsval * ar
        }
 
        /* convert args */
-       status = JS_ValueToECMAUint32(cx, argv[0], &(uint32)param_index);
+       status = JS_ValueToECMAUint32(cx, argv[0], (uint32_t*)&param_index);
        switch_assert(status == JS_TRUE);
-       status = JS_ValueToECMAUint32(cx, argv[1], &(uint32)param_value);
+       status = JS_ValueToECMAUint32(cx, argv[1], (uint32_t*)&param_value);
        switch_assert(status == JS_TRUE);
 
        if (param_index < 1)  {