diff options
Diffstat (limited to 'lib/libalpm/trans.h')
-rw-r--r-- | lib/libalpm/trans.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libalpm/trans.h b/lib/libalpm/trans.h index 8fd01ae3..962e9ffd 100644 --- a/lib/libalpm/trans.h +++ b/lib/libalpm/trans.h @@ -37,7 +37,7 @@ typedef enum _pmtransstate_t { /* Transaction */ struct __alpm_trans_t { - pmtransflag_t flags; + alpm_transflag_t flags; pmtransstate_t state; alpm_list_t *add; /* list of (alpm_pkg_t *) */ alpm_list_t *remove; /* list of (alpm_pkg_t *) */ @@ -67,7 +67,7 @@ do { \ } while(0) void _alpm_trans_free(alpm_trans_t *trans); -int _alpm_trans_init(alpm_trans_t *trans, pmtransflag_t flags, +int _alpm_trans_init(alpm_trans_t *trans, alpm_transflag_t flags, alpm_trans_cb_event event, alpm_trans_cb_conv conv, alpm_trans_cb_progress progress); int _alpm_runscriptlet(alpm_handle_t *handle, const char *installfn, |