From e1bad6ef8418925e974468d371a502caf1c7ddd5 Mon Sep 17 00:00:00 2001 From: Aaron Griffin Date: Mon, 22 Jan 2007 08:52:18 +0000 Subject: * Dan McGee Newlines were included in both setting the string variable and in the printf, remove the extra ones. --- src/pacman/package.c | 6 +++--- 1 file 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; } -- cgit v1.2.3-24-g4f1b