1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-08 14:02:16 +03:00

Fix a minor formatting error in the display of BLOB values during VDBE

tracing.

FossilOrigin-Name: 295442887a3cd5868df26c5be244649ffb3bae8367f5cf02fe513424a1c9f6a7
This commit is contained in:
drh
2020-01-08 11:36:30 +00:00
parent 4a62581b32
commit ded33ccea4
3 changed files with 8 additions and 8 deletions

View File

@@ -499,7 +499,7 @@ void sqlite3VdbeMemPrettyPrint(Mem *pMem, StrAccum *pStr){
}else{
c = 's';
}
sqlite3_str_appendf(pStr, "%cx", c);
sqlite3_str_appendf(pStr, "%cx[", c);
for(i=0; i<25 && i<pMem->n; i++){
sqlite3_str_appendf(pStr, "%02X", ((int)pMem->z[i] & 0xFF));
}