1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-06 15:49:35 +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

@@ -1,5 +1,5 @@
C Add\sthe\snumber\sof\scores\sused\sand\sthe\sname\sof\sthe\shost\scomputer\sto\sthe\nsummary\sat\sthe\send\sof\sreleasetest.tcl.
D 2016-01-03T11:17:04.115
C Fix\sa\spremature\sreference\sto\sutf8_printf\sin\sshell.c.
D 2016-01-03T11:27:47.410
F Makefile.in 28bcd6149e050dff35d4dcfd97e890cd387a499d
F Makefile.linux-gcc 7bc79876b875010e8c8f9502eb935ca92aa3c434
F Makefile.msc 5fff077fcc46de7714ed6eebb6159a4c00eab751
@@ -334,7 +334,7 @@ F src/random.c ba2679f80ec82c4190062d756f22d0c358180696
F src/resolve.c a83b41104e6ff69855d03cd0aaa09e93927ec39f
F src/rowset.c eccf6af6d620aaa4579bd3b72c1b6395d9e9fa1e
F src/select.c f8fded11fc443a9f5a73cc5db069d06b34460e2f
F src/shell.c 8d152e833c3b79825978deb83175234749c5cdf3
F src/shell.c ed71dc7679e6f087a3f1ea3f9dae4b0fae7209c3
F src/sqlite.h.in 7d87d71b9a4689c51fa092f48f16590ff71558e3
F src/sqlite3.rc 992c9f5fb8285ae285d6be28240a7e8d3a7f2bad
F src/sqlite3ext.h dfbe62ffd95b99afe2140d8c35b180d11924072d
@@ -1406,7 +1406,7 @@ F tool/vdbe_profile.tcl 246d0da094856d72d2c12efec03250d71639d19f
F tool/warnings-clang.sh f6aa929dc20ef1f856af04a730772f59283631d4
F tool/warnings.sh 48bd54594752d5be3337f12c72f28d2080cb630b
F tool/win/sqlite.vsix deb315d026cc8400325c5863eef847784a219a2f
P 2047d2deabf2021ea05d620c3dd4919448027b11
R ea21a9ede315d15a7b1dfcf0bcd428e9
P cd3ae0f14c6b28b328b208431d0effcb7b062ec6
R 17c9e71fcd959bf7c676bff4a8176b10
U drh
Z a5cb2210a915d9603f738ab23bc99890
Z cf0da92d1077e771f4727b72b37c0046

View File

@@ -1 +1 @@
cd3ae0f14c6b28b328b208431d0effcb7b062ec6
76f5efa68728d899a63a74f2528dfd0c497aa5f0

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