mirror of
https://github.com/sqlite/sqlite.git
synced 2025-11-15 11:41:13 +03:00
Make sure the argument to ctype.h macros is always an unsigned character.
Ticket #839. (CVS 1881) FossilOrigin-Name: b065973898c06a81c69b70b3fa91c79334bd9b9a
This commit is contained in:
@@ -532,7 +532,7 @@ void sqlite3VdbePrintSql(Vdbe *p){
|
||||
pOp = &p->aOp[nOp-2];
|
||||
if( pOp->opcode==OP_Noop && pOp->p3!=0 ){
|
||||
const char *z = pOp->p3;
|
||||
while( isspace(*z) ) z++;
|
||||
while( isspace(*(u8*)z) ) z++;
|
||||
printf("SQL: [%s]\n", z);
|
||||
}
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user