diff options
author | Dan McGee <dan@archlinux.org> | 2011-06-03 19:23:32 +0200 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2011-06-03 19:23:32 +0200 |
commit | de36c5fac4ab50259418c3850b6fb25b96b702f3 (patch) | |
tree | 91f4e9a93314afd3e60ce23990a05e84cb746658 /lib/libalpm/trans.c | |
parent | 7f98460e37bc032b58ca7c82e70c357aa39370f8 (diff) | |
download | pacman-de36c5fac4ab50259418c3850b6fb25b96b702f3.tar.gz pacman-de36c5fac4ab50259418c3850b6fb25b96b702f3.tar.xz |
Push down extern handle variable to files that need it
This will make the patching process less invasive as we start to remove
this variable from all source files.
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'lib/libalpm/trans.c')
-rw-r--r-- | lib/libalpm/trans.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/libalpm/trans.c b/lib/libalpm/trans.c index 31c5885c..50539c0b 100644 --- a/lib/libalpm/trans.c +++ b/lib/libalpm/trans.c @@ -43,6 +43,9 @@ #include "sync.h" #include "alpm.h" +/* global handle variable */ +extern pmhandle_t *handle; + /** \addtogroup alpm_trans Transaction Functions * @brief Functions to manipulate libalpm transactions * @{ |