diff options
Diffstat (limited to 'src/legacy.c')
-rw-r--r-- | src/legacy.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/legacy.c b/src/legacy.c index 5b037f067..e83817da7 100644 --- a/src/legacy.c +++ b/src/legacy.c @@ -14,11 +14,10 @@ ** other files are for internal use by SQLite and should not be ** accessed by users of the library. ** -** $Id: legacy.c,v 1.30 2008/12/10 19:26:24 drh Exp $ +** $Id: legacy.c,v 1.31 2009/01/20 16:53:40 danielk1977 Exp $ */ #include "sqliteInt.h" -#include <ctype.h> /* ** Execute SQL code. Return one of the SQLITE_ success/failure @@ -115,7 +114,7 @@ int sqlite3_exec( if( rc!=SQLITE_SCHEMA ){ nRetry = 0; zSql = zLeftover; - while( isspace((unsigned char)zSql[0]) ) zSql++; + while( sqlite3Isspace(zSql[0]) ) zSql++; } break; } |