mirror of
https://github.com/moparisthebest/pacman
synced 2024-12-22 15:58:50 -05:00
Minor code cleanups
Wrap lines of long length, noticed while creating and messing around with some of the other maint branch patches. Signed-off-by: Dan McGee <dan@archlinux.org>
This commit is contained in:
parent
110eb314f0
commit
7b60a639d1
@ -166,7 +166,8 @@ int SYMEXPORT alpm_sync_sysupgrade(int enable_downgrade)
|
||||
continue;
|
||||
}
|
||||
|
||||
/* If spkg is already in the target list, we append lpkg to spkg's removes list */
|
||||
/* If spkg is already in the target list, we append lpkg to spkg's
|
||||
* removes list */
|
||||
pmpkg_t *tpkg = _alpm_pkg_find(trans->add, spkg->name);
|
||||
if(tpkg) {
|
||||
/* sanity check, multiple repos can contain spkg->name */
|
||||
@ -330,8 +331,10 @@ int _alpm_sync_prepare(pmtrans_t *trans, pmdb_t *db_local, alpm_list_t *dbs_sync
|
||||
}
|
||||
}
|
||||
|
||||
/* Compute the fake local database for resolvedeps (partial fix for the phonon/qt issue) */
|
||||
alpm_list_t *localpkgs = alpm_list_diff(_alpm_db_get_pkgcache(db_local), trans->add, _alpm_pkg_cmp);
|
||||
/* Compute the fake local database for resolvedeps (partial fix for the
|
||||
* phonon/qt issue) */
|
||||
alpm_list_t *localpkgs = alpm_list_diff(_alpm_db_get_pkgcache(db_local),
|
||||
trans->add, _alpm_pkg_cmp);
|
||||
|
||||
/* Resolve packages in the transaction one at a time, in addition
|
||||
building up a list of packages which could not be resolved. */
|
||||
|
Loading…
Reference in New Issue
Block a user