diff options
author | Dan McGee <dan@archlinux.org> | 2011-02-28 10:34:00 -0600 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2011-02-28 10:41:32 -0600 |
commit | 1eccae3d9349a4366f511910f64870027a7fd2d7 (patch) | |
tree | 3584285d6630db7d005a11ad044b9cc42e019a16 /lib/libalpm | |
parent | acd9269478dbc40f1dac64d8f6ddfbb5f562ad09 (diff) |
Fix trans no-argument function definitions
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'lib/libalpm')
-rw-r--r-- | lib/libalpm/trans.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libalpm/trans.c b/lib/libalpm/trans.c index 9f617967..c1710e04 100644 --- a/lib/libalpm/trans.c +++ b/lib/libalpm/trans.c @@ -218,7 +218,7 @@ int SYMEXPORT alpm_trans_commit(alpm_list_t **data) /** Interrupt a transaction. * @return 0 on success, -1 on error (pm_errno is set accordingly) */ -int SYMEXPORT alpm_trans_interrupt() +int SYMEXPORT alpm_trans_interrupt(void) { pmtrans_t *trans; @@ -240,7 +240,7 @@ int SYMEXPORT alpm_trans_interrupt() /** Release a transaction. * @return 0 on success, -1 on error (pm_errno is set accordingly) */ -int SYMEXPORT alpm_trans_release() +int SYMEXPORT alpm_trans_release(void) { pmtrans_t *trans; @@ -277,7 +277,7 @@ int SYMEXPORT alpm_trans_release() /** @} */ -pmtrans_t *_alpm_trans_new() +pmtrans_t *_alpm_trans_new(void) { pmtrans_t *trans; |