summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAaron Griffin <aaron@archlinux.org>2007-01-22 09:52:18 +0100
committerAaron Griffin <aaron@archlinux.org>2007-01-22 09:52:18 +0100
commite1bad6ef8418925e974468d371a502caf1c7ddd5 (patch)
tree3224f747f59beeee92d3b4d450b35a9725a5b114 /src
parenteb03fe80e883e0395d972e201683cfd59060b21a (diff)
downloadpacman-e1bad6ef8418925e974468d371a502caf1c7ddd5.tar.gz
pacman-e1bad6ef8418925e974468d371a502caf1c7ddd5.tar.xz
* Dan McGee <dpmcgee@gmail.com>
Newlines were included in both setting the string variable and in the printf, remove the extra ones.
Diffstat (limited to 'src')
-rw-r--r--src/pacman/package.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/pacman/package.c b/src/pacman/package.c
index cdd1b2a9..fa5ae0f4 100644
--- a/src/pacman/package.c
+++ b/src/pacman/package.c
@@ -50,13 +50,13 @@ void dump_pkg_full(pmpkg_t *pkg, int level)
switch((long)alpm_pkg_get_reason(pkg)) {
case PM_PKG_REASON_EXPLICIT:
- reason = _("Explicitly installed\n");
+ reason = _("Explicitly installed");
break;
case PM_PKG_REASON_DEPEND:
- reason = _("Installed as a dependency for another package\n");
+ reason = _("Installed as a dependency for another package");
break;
default:
- reason = _("Unknown\n");
+ reason = _("Unknown");
break;
}