diff options
author | drh <drh@noemail.net> | 2011-12-06 19:44:51 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2011-12-06 19:44:51 +0000 |
commit | 7e02e5e6b54ea4a6b58249210c0df67af80b11a1 (patch) | |
tree | 9ea5abdb02f982bbe28130273f073871139110f7 /src/printf.c | |
parent | ed51f29774ca0581de17d7f4a066fea1b0459948 (diff) | |
download | sqlite-7e02e5e6b54ea4a6b58249210c0df67af80b11a1.tar.gz sqlite-7e02e5e6b54ea4a6b58249210c0df67af80b11a1.zip |
Begin adding the data-structure explaining subsystem. All is contained within
FossilOrigin-Name: 79ae51c5b1b20ed0a425a87e65a32a096a80b7e1
Diffstat (limited to 'src/printf.c')
-rw-r--r-- | src/printf.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/printf.c b/src/printf.c index 0babee514..58cfd2bd4 100644 --- a/src/printf.c +++ b/src/printf.c @@ -136,7 +136,7 @@ static char et_getdigit(LONGDOUBLE_TYPE *val, int *cnt){ /* ** Append N space characters to the given string buffer. */ -static void appendSpace(StrAccum *pAccum, int N){ +void sqlite3AppendSpace(StrAccum *pAccum, int N){ static const char zSpaces[] = " "; while( N>=(int)sizeof(zSpaces)-1 ){ sqlite3StrAccumAppend(pAccum, zSpaces, sizeof(zSpaces)-1); @@ -664,7 +664,7 @@ void sqlite3VXPrintf( register int nspace; nspace = width-length; if( nspace>0 ){ - appendSpace(pAccum, nspace); + sqlite3AppendSpace(pAccum, nspace); } } if( length>0 ){ @@ -674,7 +674,7 @@ void sqlite3VXPrintf( register int nspace; nspace = width-length; if( nspace>0 ){ - appendSpace(pAccum, nspace); + sqlite3AppendSpace(pAccum, nspace); } } sqlite3_free(zExtra); |