diff options
author | Dan McGee <dan@archlinux.org> | 2007-03-11 21:10:02 +0000 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2007-03-11 21:10:02 +0000 |
commit | 7f7da2b5fc01f46d28236384540c7ecfdac16a63 (patch) | |
tree | e9b3c02bdc36206e64878ceeef74a9fdf48112ff /lib/libalpm/alpm_list.c | |
parent | f94506396f25cba8a0d485c8d681482db0bd33bb (diff) | |
download | pacman-7f7da2b5fc01f46d28236384540c7ecfdac16a63.tar.xz |
* Fix group comparison issue and associated compilation warnings by using
the alpm strcmp operation which takes void* references.
* We had this great visibility patch, but never actually took advantage of
it. Added the right compile flag to make it work and added some more
SYMEXPORTs where necessary to have a successful compile.
Diffstat (limited to 'lib/libalpm/alpm_list.c')
-rw-r--r-- | lib/libalpm/alpm_list.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libalpm/alpm_list.c b/lib/libalpm/alpm_list.c index 324c7d08..54027455 100644 --- a/lib/libalpm/alpm_list.c +++ b/lib/libalpm/alpm_list.c @@ -427,7 +427,7 @@ int SYMEXPORT alpm_list_count(const alpm_list_t *list) * @param haystack the list to search * @return 1 if `needle` is found, 0 otherwise */ -int alpm_list_find(alpm_list_t *haystack, const void *needle) +int SYMEXPORT alpm_list_find(alpm_list_t *haystack, const void *needle) { alpm_list_t *lp = haystack; while(lp) { @@ -446,7 +446,7 @@ int alpm_list_find(alpm_list_t *haystack, const void *needle) * @param haystack the list to search * @return 1 if `needle` is found, 0 otherwise */ -int alpm_list_find_str(alpm_list_t *haystack, const char *needle) +int SYMEXPORT alpm_list_find_str(alpm_list_t *haystack, const char *needle) { alpm_list_t *lp = haystack; while(lp) { |