From: Antony Dovgal Date: Wed, 4 Oct 2006 13:02:36 +0000 (+0000) Subject: add missing ifdef X-Git-Tag: php-5.2.0RC5~18 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8d2406f44893ac578dda4484331bb03e77d3aa42;p=php add missing ifdef --- diff --git a/ext/pdo_sqlite/sqlite/src/vdbeaux.c b/ext/pdo_sqlite/sqlite/src/vdbeaux.c index 35bf07f422..c71c8f4ea6 100644 --- a/ext/pdo_sqlite/sqlite/src/vdbeaux.c +++ b/ext/pdo_sqlite/sqlite/src/vdbeaux.c @@ -1581,7 +1581,9 @@ void sqlite3VdbeDelete(Vdbe *p){ int sqlite3VdbeCursorMoveto(Cursor *p){ if( p->deferredMoveto ){ int res, rc; +#ifdef SQLITE_TEST extern int sqlite3_search_count; +#endif assert( p->isTable ); if( p->isTable ){ rc = sqlite3BtreeMoveto(p->pCursor, 0, p->movetoTarget, &res);