index : pacman | |
Archlinux32 fork of pacman | gitolite user |
summaryrefslogtreecommitdiff |
author | Dan McGee <dan@archlinux.org> | 2007-07-06 12:11:55 -0400 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2007-07-06 12:11:55 -0400 |
commit | 15e1ce2e709e0a16dd54ea3b5eaab0003e32b62d (patch) | |
tree | e18b7ff6c79c6c7a81c64caab9d7cb8f80a28274 /lib/libalpm/alpm.c | |
parent | 6b7b9743181078aa7152daffdfc1eaeb46304c0f (diff) |
-rw-r--r-- | lib/libalpm/alpm.c | 4 |
diff --git a/lib/libalpm/alpm.c b/lib/libalpm/alpm.c index 3b4a089c..dc5ab649 100644 --- a/lib/libalpm/alpm.c +++ b/lib/libalpm/alpm.c @@ -44,7 +44,7 @@ enum _pmerrno_t pm_errno SYMEXPORT; * functions are called. * @return 0 on success, -1 on error (pm_errno is set accordingly) */ -int SYMEXPORT alpm_initialize() +int SYMEXPORT alpm_initialize(void) { ASSERT(handle == NULL, RET_ERR(PM_ERR_HANDLE_NOT_NULL, -1)); @@ -59,7 +59,7 @@ int SYMEXPORT alpm_initialize() /** Release the library. This should be the last alpm call you make. * @return 0 on success, -1 on error (pm_errno is set accordingly) */ -int SYMEXPORT alpm_release() +int SYMEXPORT alpm_release(void) { int dbs_left = 0; |