diff options
author | Aaron Griffin <aaron@archlinux.org> | 2007-01-22 08:52:18 +0000 |
---|---|---|
committer | Aaron Griffin <aaron@archlinux.org> | 2007-01-22 08:52:18 +0000 |
commit | e1bad6ef8418925e974468d371a502caf1c7ddd5 (patch) | |
tree | 3224f747f59beeee92d3b4d450b35a9725a5b114 /src | |
parent | eb03fe80e883e0395d972e201683cfd59060b21a (diff) | |
download | 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.c | 6 |
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; } |