summaryrefslogtreecommitdiffstats
path: root/src/pacman/remove.c
diff options
context:
space:
mode:
authorAurelien Foret <aurelien@archlinux.org>2006-01-17 22:19:40 +0100
committerAurelien Foret <aurelien@archlinux.org>2006-01-17 22:19:40 +0100
commit4857012be7c5970bd2fe1c7aed37fb2e1071a802 (patch)
treeb10f97619639e07245b93a77ea0a4c5b2ad4fc3d /src/pacman/remove.c
parent510d57b5774b80b9aa89c28a2ad1bc77304d0f38 (diff)
downloadpacman-4857012be7c5970bd2fe1c7aed37fb2e1071a802.tar.gz
pacman-4857012be7c5970bd2fe1c7aed37fb2e1071a802.tar.xz
code cleanup
Diffstat (limited to 'src/pacman/remove.c')
-rw-r--r--src/pacman/remove.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/pacman/remove.c b/src/pacman/remove.c
index 11dc2f8d..495a7253 100644
--- a/src/pacman/remove.c
+++ b/src/pacman/remove.c
@@ -96,7 +96,8 @@ int pacman_remove(list_t *targets)
case PM_ERR_UNSATISFIED_DEPS:
for(lp = alpm_list_first(data); lp; lp = alpm_list_next(lp)) {
PM_DEPMISS *miss = alpm_list_getdata(lp);
- MSG(NL, " %s: is required by %s\n", alpm_dep_getinfo(miss, PM_DEP_TARGET), alpm_dep_getinfo(miss, PM_DEP_NAME));
+ MSG(NL, " %s: is required by %s\n", alpm_dep_getinfo(miss, PM_DEP_TARGET),
+ alpm_dep_getinfo(miss, PM_DEP_NAME));
}
alpm_list_free(data);
break;