fixed Visual Studio compiler warning in src/lib/lua/lib/lsqlite3.c (nw)

This commit is contained in:
Oliver Stöneberg 2014-06-16 07:26:06 +00:00
parent dd8c59687f
commit a89b052f03

View File

@ -205,7 +205,7 @@ static int cleanupvm(lua_State *L, sdb_vm *svm) {
}
static int stepvm(lua_State *L, sdb_vm *svm) {
int result;
int result = 0;
int loop_limit = 3;
while ( loop_limit-- ) {
result = sqlite3_step(svm->vm);