aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2010-07-06 09:29:01 +0000
committerdrh <drh@noemail.net>2010-07-06 09:29:01 +0000
commit9e55d47d3319d56f8ea68780c901630aa7ee0fba (patch)
treebd603050d3eaadf2f73b766cd03194eb3708c2ec /src
parent9859c427a27a6c813c8a0a11966b20d2f221a6d2 (diff)
downloadsqlite-9e55d47d3319d56f8ea68780c901630aa7ee0fba.tar.gz
sqlite-9e55d47d3319d56f8ea68780c901630aa7ee0fba.zip
Reorder variable declarations in the previous check-in to avoid putting code
before declarations when not testing. FossilOrigin-Name: d1fe8ab4a176180053d35300ad0540a27c6cd76d
Diffstat (limited to 'src')
-rw-r--r--src/prepare.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/prepare.c b/src/prepare.c
index 5a861a1bd..e51000120 100644
--- a/src/prepare.c
+++ b/src/prepare.c
@@ -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;