fix linux build
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@16016 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
parent
a16583b45a
commit
05004a91d8
|
@ -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*)¶m_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*)¶m_index);
|
||||
switch_assert(status == JS_TRUE);
|
||||
status = JS_ValueToECMAUint32(cx, argv[1], &(uint32)param_value);
|
||||
status = JS_ValueToECMAUint32(cx, argv[1], (uint32_t*)¶m_value);
|
||||
switch_assert(status == JS_TRUE);
|
||||
|
||||
if (param_index < 1) {
|
||||
|
|
Loading…
Reference in New Issue