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

Remove unused variable from printf.c. Ticket #3331. (CVS 5595)

FossilOrigin-Name: 7fd11f4ad8774e68f0a053eb2e1dd962a024da48
This commit is contained in:
drh
2008-08-22 14:08:35 +00:00
parent dac8e249af
commit 9bc467267b
3 changed files with 9 additions and 11 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.93 2008/07/28 19:34:53 drh Exp $
** $Id: printf.c,v 1.94 2008/08/22 14:08:36 drh Exp $
**
**************************************************************************
**
@@ -246,7 +246,6 @@ void sqlite3VXPrintf(
const et_info *infop; /* Pointer to the appropriate info structure */
char buf[etBUFSIZE]; /* Conversion buffer */
char prefix; /* Prefix character. "+" or "-" or " " or '\0'. */
etByte errorflag = 0; /* True if an error is encountered */
etByte xtype; /* Conversion paradigm */
char *zExtra; /* Extra memory used for etTCLESCAPE conversions */
#ifndef SQLITE_OMIT_FLOATING_POINT
@@ -270,7 +269,6 @@ void sqlite3VXPrintf(
if( c==0 ) break;
}
if( (c=(*++fmt))==0 ){
errorflag = 1;
sqlite3StrAccumAppend(pAccum, "%", 1);
break;
}