Remove unnecessary cast
Signed-off-by: Dan McGee <dan@archlinux.org>
This commit is contained in:
parent
3e08614fda
commit
6317db8429
1 changed files with 1 additions and 1 deletions
|
@ -83,7 +83,7 @@ void dump_pkg_full(alpm_pkg_t *pkg, int extra)
|
|||
strftime(idatestr, 50, "%c", localtime(&idate));
|
||||
}
|
||||
|
||||
switch((long)alpm_pkg_get_reason(pkg)) {
|
||||
switch(alpm_pkg_get_reason(pkg)) {
|
||||
case ALPM_PKG_REASON_EXPLICIT:
|
||||
reason = _("Explicitly installed");
|
||||
break;
|
||||
|
|
Loading…
Add table
Reference in a new issue