* 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:
parent
eb03fe80e8
commit
e1bad6ef84
1 changed files with 3 additions and 3 deletions
|
@ -50,13 +50,13 @@ void dump_pkg_full(pmpkg_t *pkg, int level)
|
||||||
|
|
||||||
switch((long)alpm_pkg_get_reason(pkg)) {
|
switch((long)alpm_pkg_get_reason(pkg)) {
|
||||||
case PM_PKG_REASON_EXPLICIT:
|
case PM_PKG_REASON_EXPLICIT:
|
||||||
reason = _("Explicitly installed\n");
|
reason = _("Explicitly installed");
|
||||||
break;
|
break;
|
||||||
case PM_PKG_REASON_DEPEND:
|
case PM_PKG_REASON_DEPEND:
|
||||||
reason = _("Installed as a dependency for another package\n");
|
reason = _("Installed as a dependency for another package");
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
reason = _("Unknown\n");
|
reason = _("Unknown");
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue