diff options
Diffstat (limited to 'src/mesa/main/set.c')
-rw-r--r-- | src/mesa/main/set.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/main/set.c b/src/mesa/main/set.c index 2519b96947a..dc3550c767c 100644 --- a/src/mesa/main/set.c +++ b/src/mesa/main/set.c @@ -103,8 +103,8 @@ entry_is_present(struct set_entry *entry) struct set * _mesa_set_create(void *mem_ctx, - bool key_equals_function(const void *a, - const void *b)) + bool (*key_equals_function)(const void *a, + const void *b)) { struct set *ht; |