aboutsummaryrefslogtreecommitdiff
path: root/src/printf.c
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2015-05-05 18:52:54 +0000
committerdrh <drh@noemail.net>2015-05-05 18:52:54 +0000
commit0c6ab89b4108e6c8f0fd9e56c00e9651ddaebb3d (patch)
treec3fd0f1d24df811ff7659c10b25c8d4d2a5e5f05 /src/printf.c
parent0a96931b76e9b68e73d312bcc479d54b818a26cb (diff)
downloadsqlite-0c6ab89b4108e6c8f0fd9e56c00e9651ddaebb3d.tar.gz
sqlite-0c6ab89b4108e6c8f0fd9e56c00e9651ddaebb3d.zip
Remove four lines of superfluous code identified by clang scan-build.
FossilOrigin-Name: 04afa3febee32854fbb09ef8d4ffffd432119716
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 ){