mirror of
https://github.com/holub/mame
synced 2025-07-05 18:08:04 +03:00
fixed Visual Studio compiler warning in src/lib/lua/lib/lsqlite3.c (nw)
This commit is contained in:
parent
dd8c59687f
commit
a89b052f03
@ -205,7 +205,7 @@ static int cleanupvm(lua_State *L, sdb_vm *svm) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
static int stepvm(lua_State *L, sdb_vm *svm) {
|
static int stepvm(lua_State *L, sdb_vm *svm) {
|
||||||
int result;
|
int result = 0;
|
||||||
int loop_limit = 3;
|
int loop_limit = 3;
|
||||||
while ( loop_limit-- ) {
|
while ( loop_limit-- ) {
|
||||||
result = sqlite3_step(svm->vm);
|
result = sqlite3_step(svm->vm);
|
||||||
|
Loading…
Reference in New Issue
Block a user