mirror of
https://github.com/mdbtools/mdbtools.git
synced 2025-11-26 10:29:27 +08:00
Remove an unused variable and a noop
This commit is contained in:
@@ -43,7 +43,6 @@ int i, j, k;
|
||||
MdbHandle *mdb;
|
||||
MdbCatalogEntry *entry;
|
||||
MdbTableDef *table;
|
||||
MdbColumn *col;
|
||||
char *tabname = NULL;
|
||||
int opt;
|
||||
|
||||
|
||||
@@ -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");
|
||||
|
||||
Reference in New Issue
Block a user