diff options
author | drh <drh@noemail.net> | 2005-08-13 13:40:42 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2005-08-13 13:40:42 +0000 |
commit | 531fe878349f7b4e7912d2b43df7c150878af44d (patch) | |
tree | fe60c2200eee6d1eec56498d19f3cf26c060edc9 /src | |
parent | 3e9aeec03f5124505f0662034ea3457b13a389d2 (diff) | |
download | sqlite-531fe878349f7b4e7912d2b43df7c150878af44d.tar.gz sqlite-531fe878349f7b4e7912d2b43df7c150878af44d.zip |
Fix a comment in printf. (CVS 2588)
FossilOrigin-Name: 1054685f15095ef147d9e9a32bd56b0eaaf9fa54
Diffstat (limited to 'src')
-rw-r--r-- | src/printf.c | 2 |
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 */ |