Fixed compile on Windows with gcc

r=shaver
This commit is contained in:
mattwillis%gmail.com 2005-01-07 20:52:04 +00:00
Родитель 533df7b812
Коммит 446a80de3d
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -104,7 +104,7 @@ JSValStorageStatementBinder (JSContext *cx,
aStatement->BindDoubleParameter(aParamIndex, d);
} else if (JSVAL_IS_STRING(val)) {
JSString *str = JSVAL_TO_STRING(val);
aStatement->BindWStringParameter(aParamIndex, NS_STATIC_CAST(PRUnichar*, JS_GetStringChars(str)));
aStatement->BindWStringParameter(aParamIndex, NS_REINTERPRET_CAST(PRUnichar*, JS_GetStringChars(str)));
} else if (JSVAL_IS_BOOLEAN(val)) {
if (val == JSVAL_TRUE) {
aStatement->BindInt32Parameter(aParamIndex, 1);