mirror of
https://github.com/moparisthebest/pacman
synced 2024-12-23 00:08:50 -05:00
fixed a typo
This commit is contained in:
parent
fc8be93314
commit
c57d069abb
@ -523,7 +523,6 @@ int pacman_sync(list_t *targets)
|
||||
case PM_ERR_UNSATISFIED_DEPS:
|
||||
for(lp = alpm_list_first(data); lp; lp = alpm_list_next(lp)) {
|
||||
PM_DEPMISS *miss = alpm_list_getdata(lp);
|
||||
|
||||
MSG(NL, ":: %s: %s %s", alpm_dep_getinfo(miss, PM_DEP_TARGET),
|
||||
alpm_dep_getinfo(miss, PM_DEP_TYPE) == PM_DEP_TYPE_DEPEND ? "requires" : "is required by",
|
||||
alpm_dep_getinfo(miss, PM_DEP_NAME));
|
||||
@ -539,13 +538,10 @@ int pacman_sync(list_t *targets)
|
||||
case PM_ERR_CONFLICTING_DEPS:
|
||||
for(lp = alpm_list_first(data); lp; lp = alpm_list_next(lp)) {
|
||||
PM_DEPMISS *miss = alpm_list_getdata(lp);
|
||||
|
||||
MSG(NL, ":: %s: conflicts with %s", alpm_dep_getinfo(miss, PM_DEP_TARGET),
|
||||
alpm_dep_getinfo(miss, PM_DEP_NAME));
|
||||
}
|
||||
alpm_list_free(data);
|
||||
break;
|
||||
alpm_list_free(data);
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user