From: drh Date: Sat, 13 Aug 2005 13:40:42 +0000 (+0000) Subject: Fix a comment in printf. (CVS 2588) X-Git-Tag: version-3.6.10~3571 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=531fe878349f7b4e7912d2b43df7c150878af44d;p=thirdparty%2Fsqlite.git Fix a comment in printf. (CVS 2588) FossilOrigin-Name: 1054685f15095ef147d9e9a32bd56b0eaaf9fa54 --- diff --git a/manifest b/manifest index 2cf51a30f0..4ac28f332a 100644 --- a/manifest +++ b/manifest @@ -1,5 +1,5 @@ -C Additional\scleanup\sand\soptimization\sof\sthe\sprintf\sfunction.\s(CVS\s2587) -D 2005-08-13T13:39:03 +C Fix\sa\scomment\sin\sprintf.\s(CVS\s2588) +D 2005-08-13T13:40:42 F Makefile.in 22ea9c0fe748f591712d8fe3c6d972c6c173a165 F Makefile.linux-gcc 06be33b2a9ad4f005a5f42b22c4a19dab3cbb5c7 F README 9c4e2d6706bdcc3efdd773ce752a8cdab4f90028 @@ -60,7 +60,7 @@ F src/pager.h 0d9153d6269d60d04af3dd84a0cc0a96253cf4a4 F src/parse.y d57cdd2adc0923762b40314f08683c836a2e0c90 F src/pragma.c 59ab7073465a11a531af2796e0385727194accb8 F src/prepare.c fa0f6068d9b8ec6d5c419c65d4d8ff747d49c5c6 -F src/printf.c e63e8aa8fc8a54128ccef27e8dbe1a3c60b4e37e +F src/printf.c 772b15c3395fa60bdbf3aaa03d480ecde38bf192 F src/random.c 90adff4e73a3b249eb4f1fc2a6ff9cf78c7233a4 F src/select.c c611471052773b94af771693686bd5bcdbbb0dba F src/shell.c 86c16f0d534aa51cc82cf9f66903d4eb681580e7 @@ -291,7 +291,7 @@ F www/tclsqlite.tcl 3df553505b6efcad08f91e9b975deb2e6c9bb955 F www/vdbe.tcl 87a31ace769f20d3627a64fa1fade7fed47b90d0 F www/version3.tcl a99cf5f6d8bd4d5537584a2b342f0fb9fa601d8b F www/whentouse.tcl 528299b8316726dbcc5548e9aa0648c8b1bd055b -P 4b98dace6b90abf4a6fe1cd51e6392fd213358c4 -R 00f1187489ef9968d304d68c4469fe37 +P 240bb049001b0d1419d72b6ef909236e12bd5949 +R c4c4f129cf45073166872f89ead87e29 U drh -Z 64274af75cd150ac18f1611e8aab4ae7 +Z 355afc4615017b256e4a9bb53eaadeae diff --git a/manifest.uuid b/manifest.uuid index fc64b34885..4a694682e5 100644 --- a/manifest.uuid +++ b/manifest.uuid @@ -1 +1 @@ -240bb049001b0d1419d72b6ef909236e12bd5949 \ No newline at end of file +1054685f15095ef147d9e9a32bd56b0eaaf9fa54 \ No newline at end of file diff --git a/src/printf.c b/src/printf.c index 5ae1005f6c..18810e4b7c 100644 --- a/src/printf.c +++ b/src/printf.c @@ -210,7 +210,7 @@ static int vxprintf( etByte flag_plussign; /* True if "+" flag is present */ etByte flag_blanksign; /* True if " " flag is present */ etByte flag_alternateform; /* True if "#" flag is present */ - etByte flag_altform2; /* True if "$" flag is present */ + etByte flag_altform2; /* True if "!" flag is present */ etByte flag_zeropad; /* True if field width constant starts with zero */ etByte flag_long; /* True if "l" flag is present */ etByte flag_longlong; /* True if the "ll" flag is present */