mirror of
https://github.com/sqlite/sqlite.git
synced 2025-11-05 04:30:38 +03:00
Fix a premature reference to utf8_printf in shell.c.
FossilOrigin-Name: 76f5efa68728d899a63a74f2528dfd0c497aa5f0
This commit is contained in:
@@ -382,7 +382,7 @@ static void SQLITE_CDECL iotracePrintf(const char *zFormat, ...){
|
||||
va_start(ap, zFormat);
|
||||
z = sqlite3_vmprintf(zFormat, ap);
|
||||
va_end(ap);
|
||||
utf8_printf(iotrace, "%s", z);
|
||||
fprintf(iotrace, "%s", z);
|
||||
sqlite3_free(z);
|
||||
}
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user