list-remotes: Separate columns with tab

Since the title column can often have spaces in it.
tingping/wmclass
Alexander Larsson 2015-09-17 15:39:28 +02:00
parent 0e08979493
commit d42bef8f3f
1 changed files with 1 additions and 1 deletions

View File

@ -102,7 +102,7 @@ table_printer_print (TablePrinter *printer)
char **row = g_ptr_array_index (printer->rows,i);
for (j = 0; row[j] != NULL; j++)
g_print ("%-*s%s", widths[j], row[j], j == printer->n_columns - 1 ? "" : " ");
g_print ("%-*s%s", widths[j], row[j], j == printer->n_columns - 1 ? "" : "\t");
g_print ("\n");
}
}