forked from Mirrors/freeswitch
correct warning fix
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@16017 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
parent
05004a91d8
commit
d2ea91a070
@ -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_t*)¶m_index);
|
||||
status = JS_ValueToECMAUint32(cx, argv[0], (uint32*)¶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_t*)¶m_index);
|
||||
status = JS_ValueToECMAUint32(cx, argv[0], (uint32*)¶m_index);
|
||||
switch_assert(status == JS_TRUE);
|
||||
status = JS_ValueToECMAUint32(cx, argv[1], (uint32_t*)¶m_value);
|
||||
status = JS_ValueToECMAUint32(cx, argv[1], (uint32*)¶m_value);
|
||||
switch_assert(status == JS_TRUE);
|
||||
|
||||
if (param_index < 1) {
|
||||
|
Loading…
Reference in New Issue
Block a user