Index: third_party/sqlite/src/tool/speedtest8inst1.c |
diff --git a/third_party/sqlite/src/tool/speedtest8inst1.c b/third_party/sqlite/src/tool/speedtest8inst1.c |
index f0cb544c81e99b879c7c529c0642271733de7ada..ceaeca0f167bb4fbabf89f3a47e08d12766f520a 100644 |
--- a/third_party/sqlite/src/tool/speedtest8inst1.c |
+++ b/third_party/sqlite/src/tool/speedtest8inst1.c |
@@ -29,6 +29,8 @@ |
#include <stdarg.h> |
#include "sqlite3.h" |
+#define ISSPACE(X) isspace((unsigned char)(X)) |
+ |
#include "test_osinst.c" |
/* |
@@ -197,7 +199,7 @@ int main(int argc, char **argv){ |
zSql[j+1] = c; |
if( isComplete ){ |
zSql[j] = 0; |
- while( i<j && isspace(zSql[i]) ){ i++; } |
+ while( i<j && ISSPACE(zSql[i]) ){ i++; } |
if( i<j ){ |
prepareAndRun(pInstVfs, db, &zSql[i]); |
} |