aboutsummaryrefslogtreecommitdiff
path: root/src/printf.c
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2005-08-13 13:40:42 +0000
committerdrh <drh@noemail.net>2005-08-13 13:40:42 +0000
commit531fe878349f7b4e7912d2b43df7c150878af44d (patch)
treefe60c2200eee6d1eec56498d19f3cf26c060edc9 /src/printf.c
parent3e9aeec03f5124505f0662034ea3457b13a389d2 (diff)
downloadsqlite-531fe878349f7b4e7912d2b43df7c150878af44d.tar.gz
sqlite-531fe878349f7b4e7912d2b43df7c150878af44d.zip
Fix a comment in printf. (CVS 2588)
FossilOrigin-Name: 1054685f15095ef147d9e9a32bd56b0eaaf9fa54
Diffstat (limited to 'src/printf.c')
-rw-r--r--src/printf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/printf.c b/src/printf.c
index 5ae1005f6..18810e4b7 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 */