| Index: Source/bindings/v8/custom/V8SQLTransactionCustom.cpp
|
| diff --git a/Source/bindings/v8/custom/V8SQLTransactionCustom.cpp b/Source/bindings/v8/custom/V8SQLTransactionCustom.cpp
|
| index 41eab0ba08bf76318f440a6c642977b31f8adfdd..c40ef9c0de90307c2826ce289fba1146fe671f6e 100644
|
| --- a/Source/bindings/v8/custom/V8SQLTransactionCustom.cpp
|
| +++ b/Source/bindings/v8/custom/V8SQLTransactionCustom.cpp
|
| @@ -74,7 +74,7 @@ void V8SQLTransaction::executeSqlMethodCustom(const v8::FunctionCallbackInfo<v8:
|
| else
|
| sqlArgsLength = length->Uint32Value();
|
|
|
| - for (unsigned int i = 0; i < sqlArgsLength; ++i) {
|
| + for (unsigned i = 0; i < sqlArgsLength; ++i) {
|
| v8::Handle<v8::Integer> key = v8::Integer::New(info.GetIsolate(), i);
|
| V8TRYCATCH_VOID(v8::Local<v8::Value>, value, sqlArgsObject->Get(key));
|
|
|
|
|