mirror of
https://github.com/mdbtools/mdbtools.git
synced 2025-04-05 20:31:00 +08:00
accidently was printing first column header twice
This commit is contained in:
parent
2fb29d93b8
commit
a1514812cf
@ -59,7 +59,7 @@ char quote_text = 1;
|
||||
if (header_row) {
|
||||
col=g_ptr_array_index(table->columns,0);
|
||||
fprintf(stdout,"%s",col->name);
|
||||
for (j=0;j<table->num_cols;j++) {
|
||||
for (j=1;j<table->num_cols;j++) {
|
||||
col=g_ptr_array_index(table->columns,j);
|
||||
fprintf(stdout,"%s%s",delimiter,col->name);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user