]> git.ipfire.org Git - thirdparty/sqlite.git/commitdiff
Fix a premature reference to utf8_printf in shell.c.
authordrh <drh@noemail.net>
Sun, 3 Jan 2016 11:27:47 +0000 (11:27 +0000)
committerdrh <drh@noemail.net>
Sun, 3 Jan 2016 11:27:47 +0000 (11:27 +0000)
FossilOrigin-Name: 76f5efa68728d899a63a74f2528dfd0c497aa5f0

manifest
manifest.uuid
src/shell.c

index 394319edbfe93bd9ef3b739912fa46378ba1e0e3..218d499932785106cf50dfa65dbad2a80ad52359 100644 (file)
--- a/manifest
+++ b/manifest
@@ -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
index 72d55b1f128e69af3d4d0719ef930a4b16aaead8..1130aa9c0e2015cdb8303d9e5fa04d2e76105238 100644 (file)
@@ -1 +1 @@
-cd3ae0f14c6b28b328b208431d0effcb7b062ec6
\ No newline at end of file
+76f5efa68728d899a63a74f2528dfd0c497aa5f0
\ No newline at end of file
index ecb591a32a54561338a4fabf6662d3c82c1822df..b7a7abcd33157d1f9c1bf5a2a85f6383e86489a1 100644 (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