From: drh Date: Sun, 3 Jan 2016 11:27:47 +0000 (+0000) Subject: Fix a premature reference to utf8_printf in shell.c. X-Git-Tag: version-3.10.0~13 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=41d0ba72aeb274578ea3f06437d363a0ae5377ce;p=thirdparty%2Fsqlite.git Fix a premature reference to utf8_printf in shell.c. FossilOrigin-Name: 76f5efa68728d899a63a74f2528dfd0c497aa5f0 --- diff --git a/manifest b/manifest index 394319edbf..218d499932 100644 --- 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 diff --git a/manifest.uuid b/manifest.uuid index 72d55b1f12..1130aa9c0e 100644 --- a/manifest.uuid +++ b/manifest.uuid @@ -1 +1 @@ -cd3ae0f14c6b28b328b208431d0effcb7b062ec6 \ No newline at end of file +76f5efa68728d899a63a74f2528dfd0c497aa5f0 \ No newline at end of file diff --git a/src/shell.c b/src/shell.c index ecb591a32a..b7a7abcd33 100644 --- a/src/shell.c +++ b/src/shell.c @@ -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