mirror of
https://github.com/flatpak/flatpak.git
synced 2026-01-27 00:59:19 -05:00
list-remotes: Separate columns with tab
Since the title column can often have spaces in it.
This commit is contained in:
@@ -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");
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user