1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-07 02:42:48 +03:00

Fix a typo preventing this from building with SQLITE_ENABLE_STMT_SCANSTATUS defined.

FossilOrigin-Name: 4c5714ab3dba19513374c7b1478221a0b90b450c
This commit is contained in:
dan
2014-11-03 16:39:37 +00:00
parent d1a1c23423
commit d72219da43
4 changed files with 11 additions and 11 deletions

View File

@@ -1504,7 +1504,7 @@ int sqlite3_stmt_scanstatus(
break;
}
case SQLITE_SCANSTAT_NAME: {
*(const char**)pOut = pScan->zName
*(const char**)pOut = pScan->zName;
break;
}
case SQLITE_SCANSTAT_EXPLAIN: {