From e13a3bf5990d03cca25c86efbfbaf2540d645413 Mon Sep 17 00:00:00 2001 From: Gerardo Exequiel Pozzi Date: Thu, 3 Jan 2013 18:48:51 -0300 Subject: Fix missing spaces in operators Signed-off-by: Gerardo Exequiel Pozzi Signed-off-by: Allan McRae --- src/pacman/util.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/pacman/util.c') diff --git a/src/pacman/util.c b/src/pacman/util.c index 014be1fc..27e1f158 100644 --- a/src/pacman/util.c +++ b/src/pacman/util.c @@ -1216,7 +1216,7 @@ void display_optdepends(alpm_pkg_t *pkg) static void display_repo_list(const char *dbname, alpm_list_t *list, unsigned short cols) { - const char *prefix= " "; + const char *prefix = " "; printf(":: "); printf(_("Repository %s\n"), dbname); @@ -1311,14 +1311,14 @@ static int multiselect_parse(char *array, int count, char *response) return -1; if(!ends) { - array[start-1] = include; + array[start - 1] = include; } else { int d; if(parseindex(ends, &end, start, count) != 0) { return -1; } for(d = start; d <= end; d++) { - array[d-1] = include; + array[d - 1] = include; } } } -- cgit v1.2.3