aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteve Schrock <steve.schrock@getcruise.com>2024-02-22 20:53:27 +0000
committerDenis Kenzior <denkenz@gmail.com>2024-02-22 15:59:35 -0600
commit3b2f61a0be289c615a71a9a9fca4c255ef702b2c (patch)
tree5ef8732a7e924d6fe09a250b690a5254059d0ee7
parent7ee32349810482a1906303af23250890f0bb946a (diff)
queue: Fix names of l_queue_match_func_t parameters
-rw-r--r--ell/queue.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/ell/queue.h b/ell/queue.h
index f595d4dd..517298c8 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;