diff options
author | Aurelien Foret <aurelien@archlinux.org> | 2005-11-07 12:57:33 +0000 |
---|---|---|
committer | Aurelien Foret <aurelien@archlinux.org> | 2005-11-07 12:57:33 +0000 |
commit | b2df466ffd87c46a823fc46c3ca0026f6c9a001e (patch) | |
tree | 4537a339d94fde1ac621decad1bf55bfaea8cee1 /lib/libalpm/handle.h | |
parent | 6a2230dce1544418112c85bf46f3669cc7fed7dc (diff) | |
download | pacman-b2df466ffd87c46a823fc46c3ca0026f6c9a001e.tar.xz |
fixed compilation warnings
Diffstat (limited to 'lib/libalpm/handle.h')
-rw-r--r-- | lib/libalpm/handle.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libalpm/handle.h b/lib/libalpm/handle.h index df923a84..33803068 100644 --- a/lib/libalpm/handle.h +++ b/lib/libalpm/handle.h @@ -52,7 +52,7 @@ typedef struct __pmhandle_t { #define FREEHANDLE(p) do { if (p) { handle_free(p); p = NULL; } } while (0) -pmhandle_t *handle_new(); +pmhandle_t *handle_new(void); int handle_free(pmhandle_t *handle); int handle_set_option(pmhandle_t *handle, unsigned char val, unsigned long data); int handle_get_option(pmhandle_t *handle, unsigned char val, long *data); |