diff options
author | Brian Paul <[email protected]> | 2013-07-08 09:58:12 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2013-07-12 08:19:49 -0600 |
commit | 738337356be7b138af98c01a55279c5a940833d9 (patch) | |
tree | da52450bfbe4c117edae61e647b99396f41c00b8 /src/mesa/main/set.c | |
parent | 8ba5c79d2c075978947350507e5deb5477eb23ad (diff) |
mesa: fix inconsistent function declaration, definitions
To silence MSVC warnings that the declaration and definitions
were different.
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; |