1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-03 16:53:36 +03:00

Fix for ticket #135: Remove unused variables from three files. (CVS 719)

FossilOrigin-Name: 8cf17f2a24ee9bd5d1ea66484922819626c412dd
This commit is contained in:
drh
2002-08-15 13:50:48 +00:00
parent c277413089
commit cb48588297
5 changed files with 13 additions and 20 deletions

View File

@@ -206,7 +206,6 @@ static int vxprintf(
char prefix; /* Prefix character. "+" or "-" or " " or '\0'. */
int errorflag = 0; /* True if an error is encountered */
enum et_type xtype; /* Conversion paradigm */
char *zMem; /* String to be freed */
char *zExtra; /* Extra memory used for etTCLESCAPE conversions */
static char spaces[] = " "
" ";
@@ -550,7 +549,7 @@ static int vxprintf(
bufpt = buf;
break;
case etSTRING:
zMem = bufpt = va_arg(ap,char*);
bufpt = va_arg(ap,char*);
if( bufpt==0 ) bufpt = "(null)";
length = strlen(bufpt);
if( precision>=0 && precision<length ) length = precision;