Remove an unused variable and a noop

This commit is contained in:
whydoubt 2005-04-29 02:35:57 +00:00
parent 5c7e72105d
commit 2983da266c
3 changed files with 4 additions and 2 deletions

View File

@ -1,3 +1,7 @@
Thu Apr 28 21:34:57 CDT 2005 Jeff Smith <whydoubt@yahoo.com>
* src/util/mdb-check.c:
* src/util/sargtest.c: Remove an unused variable and a noop
Sat Apr 9 15:40:17 CDT 2005 Jeff Smith <whydoubt@yahoo.com>
* src/gmdb2/gladefiles/gmdb-debug.glade:
* src/gmdb2/gladefiles/gmdb-schema.glade:

View File

@ -43,7 +43,6 @@ int i, j, k;
MdbHandle *mdb;
MdbCatalogEntry *entry;
MdbTableDef *table;
MdbColumn *col;
char *tabname = NULL;
int opt;

View File

@ -86,7 +86,6 @@ MdbSarg sarg;
while(mdb_fetch_row(table)) {
fprintf(stdout,"%s",bound_values[0]);
for (j=1;j<table->num_cols;j++) {
col=g_ptr_array_index(table->columns,j);
fprintf(stdout,"%s%s",DELIMETER,bound_values[j]);
}
fprintf(stdout,"\n");