1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-14 00:22:38 +03:00

Add a comment to printf.c - no changes to code. (CVS 6468)

FossilOrigin-Name: ee5a4a0e595a7b916db7d55d30ddfda0a8d40d90
This commit is contained in:
drh
2009-04-08 11:49:42 +00:00
parent 65a73bad9e
commit 7e3ff5d84e
3 changed files with 11 additions and 8 deletions

View File

@@ -5,7 +5,7 @@
** an historical reference. Most of the "enhancements" have been backed
** out so that the functionality is now the same as standard printf().
**
** $Id: printf.c,v 1.99 2008/12/10 19:26:24 drh Exp $
** $Id: printf.c,v 1.100 2009/04/08 11:49:42 drh Exp $
**
**************************************************************************
**
@@ -133,6 +133,9 @@ static const et_info fmtinfo[] = {
{ 'n', 0, 0, etSIZE, 0, 0 },
{ '%', 0, 0, etPERCENT, 0, 0 },
{ 'p', 16, 0, etPOINTER, 0, 1 },
/* All the rest have the FLAG_INTERN bit set and are thus for internal
** use only */
{ 'T', 0, 2, etTOKEN, 0, 0 },
{ 'S', 0, 2, etSRCLIST, 0, 0 },
{ 'r', 10, 3, etORDINAL, 0, 0 },