diff options
author | Dan McGee <dan@archlinux.org> | 2011-06-03 13:18:36 -0500 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2011-06-03 13:18:36 -0500 |
commit | e68f5d9a30671419c853b255b32b2e9d0239c9f1 (patch) | |
tree | da3ddef7fa075fcea4035f075d01920fe8b9a3ed /lib/libalpm/add.h | |
parent | d2f05f72f02e15164f2d83347317f15c7e8c4fb9 (diff) | |
download | pacman-e68f5d9a30671419c853b255b32b2e9d0239c9f1.tar.xz |
Remove global handle dependencies from sync/upgrade paths
This kills a lot more global handle business off. sync.c still requires
the handle declaration for one reference that can't be changed yet; it
will be removed in a future patch which isolates all of the necesary API
changes.
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'lib/libalpm/add.h')
-rw-r--r-- | lib/libalpm/add.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libalpm/add.h b/lib/libalpm/add.h index afc7be26..1baab8d4 100644 --- a/lib/libalpm/add.h +++ b/lib/libalpm/add.h @@ -24,7 +24,7 @@ #include "alpm_list.h" #include "trans.h" -int _alpm_upgrade_packages(pmtrans_t *trans, pmdb_t *db); +int _alpm_upgrade_packages(pmhandle_t *handle); #endif /* _ALPM_ADD_H */ |