diff mbox series

queue: Fix names of l_queue_match_func_t parameters

Message ID 20240222205327.18929-1-steve.schrock@getcruise.com (mailing list archive)
State Accepted, archived
Headers show
Series queue: Fix names of l_queue_match_func_t parameters | expand

Checks

Context Check Description
tedd_an/pre-ci_am success Success
prestwoj/iwd-ci-makedistcheck success Make Distcheck
prestwoj/iwd-ci-build success Build - Configure
prestwoj/iwd-ci-makecheck success Make Check
prestwoj/iwd-ci-makecheckvalgrind success Make Check w/Valgrind
prestwoj/iwd-ci-clang success clang PASS
prestwoj/iwd-ci-testrunner success test-runner PASS

Commit Message

Steve Schrock Feb. 22, 2024, 8:53 p.m. UTC
---
 ell/queue.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Denis Kenzior Feb. 22, 2024, 9:59 p.m. UTC | #1
Hi Steve,

On 2/22/24 14:53, Steve Schrock wrote:
> ---
>   ell/queue.h | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 

Applied, thanks.

Regards,
-Denis
diff mbox series

Patch

diff --git a/ell/queue.h b/ell/queue.h
index f595d4d..517298c 100644
--- a/ell/queue.h
+++ b/ell/queue.h
@@ -18,7 +18,7 @@  typedef void (*l_queue_foreach_func_t) (void *data, void *user_data);
 typedef void (*l_queue_destroy_func_t) (void *data);
 typedef int (*l_queue_compare_func_t) (const void *a, const void *b,
 							void *user_data);
-typedef bool (*l_queue_match_func_t) (const void *a, const void *b);
+typedef bool (*l_queue_match_func_t) (const void *data, const void *user_data);
 typedef bool (*l_queue_remove_func_t) (void *data, void *user_data);
 
 struct l_queue;