Skip to content

Commit bd98c2a

Browse files
committed
Fix compilation warning on Windows
1 parent 801f6b7 commit bd98c2a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/njs/src/njsConnection.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2927,7 +2927,7 @@ v8::Local<v8::Value> Connection::GetRows (eBaton* executeBaton)
29272927
{
29282928
Nan::Set(row,
29292929
Nan::New<v8::String>(executeBaton->mInfo[j].name.c_str(),
2930-
executeBaton->mInfo[j].name.length()).ToLocalChecked(),
2930+
(int) executeBaton->mInfo[j].name.length()).ToLocalChecked(),
29312931
val );
29322932
}
29332933
else

0 commit comments

Comments
 (0)