aboutsummaryrefslogtreecommitdiff
path: root/src/printf.c
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2015-05-07 12:29:54 +0000
committerdrh <drh@noemail.net>2015-05-07 12:29:54 +0000
commit060c3ffc71dd9fa09e02e0aca2c47d981affd57c (patch)
tree29a09124c5cc4a0e1122ec4adc33011d9e1fa68d /src/printf.c
parentd689fd3a92428042a0784f7d8eb0fecda8921af8 (diff)
parent8f109e396f7b8e9aa76b22efcc3370f87b86eeed (diff)
downloadsqlite-060c3ffc71dd9fa09e02e0aca2c47d981affd57c.tar.gz
sqlite-060c3ffc71dd9fa09e02e0aca2c47d981affd57c.zip
Merge in the 3.8.10 release changes.
FossilOrigin-Name: 0404ef885e47f0df1daa04feb28452beb4d32a35
Diffstat (limited to 'src/printf.c')
-rw-r--r--src/printf.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/printf.c b/src/printf.c
index 05f2ff5a6..1d50d7790 100644
--- a/src/printf.c
+++ b/src/printf.c
@@ -253,7 +253,6 @@ void sqlite3VXPrintf(
}
}while( !done && (c=(*++fmt))!=0 );
/* Get the field width */
- width = 0;
if( c=='*' ){
if( bArgList ){
width = (int)getIntArg(pArgList);
@@ -277,7 +276,6 @@ void sqlite3VXPrintf(
/* Get the precision */
if( c=='.' ){
- precision = 0;
c = *++fmt;
if( c=='*' ){
if( bArgList ){