summaryrefslogtreecommitdiffstats
path: root/src/pacman/remove.c
diff options
context:
space:
mode:
authorSimon Gomizelj <simongmzlj@gmail.com>2013-03-01 19:40:02 +0100
committerAllan McRae <allan@archlinux.org>2013-03-07 06:55:03 +0100
commitef5feb15a7403c6b7ea258927bb04c9111653669 (patch)
treef8392a42f0d27d18f6ff2c53b6cd406ec2b4359c /src/pacman/remove.c
parent098cfe516d0a406ace95b12eeb5a2fecaff27a8b (diff)
downloadpacman-ef5feb15a7403c6b7ea258927bb04c9111653669.tar.gz
pacman-ef5feb15a7403c6b7ea258927bb04c9111653669.tar.xz
remove :: prefix from all message
This will substantially simplify the logic to add colours to messages. Signed-off-by: Simon Gomizelj <simongmzlj@gmail.com> Signed-off-by: Allan McRae <allan@archlinux.org>
Diffstat (limited to 'src/pacman/remove.c')
-rw-r--r--src/pacman/remove.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pacman/remove.c b/src/pacman/remove.c
index 943a555f..8cf3ebc5 100644
--- a/src/pacman/remove.c
+++ b/src/pacman/remove.c
@@ -119,7 +119,7 @@ int pacman_remove(alpm_list_t *targets)
for(i = data; i; i = alpm_list_next(i)) {
alpm_depmissing_t *miss = i->data;
char *depstring = alpm_dep_compute_string(miss->depend);
- printf(_(":: %s: requires %s\n"), miss->target, depstring);
+ colon_printf(_("%s: requires %s\n"), miss->target, depstring);
free(depstring);
}
break;