From d42bef8f3f412c6d0237a32cb2451859fc4e9a4e Mon Sep 17 00:00:00 2001 From: Alexander Larsson Date: Thu, 17 Sep 2015 15:39:28 +0200 Subject: [PATCH] list-remotes: Separate columns with tab Since the title column can often have spaces in it. --- app/xdg-app-builtins-list-remotes.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/xdg-app-builtins-list-remotes.c b/app/xdg-app-builtins-list-remotes.c index 633a9b90..70e7a760 100644 --- a/app/xdg-app-builtins-list-remotes.c +++ b/app/xdg-app-builtins-list-remotes.c @@ -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"); } }