1
0
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:
drh
2016-01-03 11:27:47 +00:00
parent 573d88e8ed
commit 41d0ba72ae
3 changed files with 8 additions and 8 deletions

View File

@@ -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