* Dan McGee <dpmcgee@gmail.com>

Newlines were included in both setting the string
    variable and in the printf, remove the extra ones.
This commit is contained in:
Aaron Griffin 2007-01-22 08:52:18 +00:00
parent eb03fe80e8
commit e1bad6ef84

View file

@ -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;
}