1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-18 10:21:03 +03:00

Reorder variable declarations in the previous check-in to avoid putting code

before declarations when not testing.

FossilOrigin-Name: d1fe8ab4a176180053d35300ad0540a27c6cd76d
This commit is contained in:
drh
2010-07-06 09:29:01 +00:00
parent 9859c427a2
commit 9e55d47d33
3 changed files with 19 additions and 9 deletions

View File

@@ -73,9 +73,9 @@ int sqlite3InitCallback(void *pInit, int argc, char **argv, char **NotUsed){
** or executed. All the parser does is build the internal data
** structures that describe the table, index, or view.
*/
TESTONLY(int rcp); /* Return code from sqlite3_prepare() */
int rc;
sqlite3_stmt *pStmt;
TESTONLY(int rcp); /* Return code from sqlite3_prepare() */
assert( db->init.busy );
db->init.iDb = iDb;