diff options
Diffstat (limited to 'ext/misc/spellfix.c')
-rw-r--r-- | ext/misc/spellfix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/misc/spellfix.c b/ext/misc/spellfix.c index 336203433..0515b7bc6 100644 --- a/ext/misc/spellfix.c +++ b/ext/misc/spellfix.c @@ -1851,7 +1851,7 @@ static char *spellfix1Dequote(const char *zIn){ char *zOut; int i, j; char c; - while( isspace(zIn[0]) ) zIn++; + while( isspace((unsigned char)zIn[0]) ) zIn++; zOut = sqlite3_mprintf("%s", zIn); if( zOut==0 ) return 0; i = (int)strlen(zOut); |