diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/whereexpr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/whereexpr.c b/src/whereexpr.c index 2c4d0fef0..4a24dadd2 100644 --- a/src/whereexpr.c +++ b/src/whereexpr.c @@ -1400,7 +1400,7 @@ static void exprAnalyze( } /* Increment the value of the last utf8 character in the prefix. */ - while( *pC==0xBF && ALWAYS(pC>(u8*)pStr2->u.zToken) ){ + while( *pC==0xBF && pC>(u8*)pStr2->u.zToken ){ *pC = 0x80; pC--; } |