summaryrefslogtreecommitdiff
path: root/src/cairo-hash-private.h
diff options
context:
space:
mode:
authorCarl Worth <cworth@raht.cworth.org>2006-03-22 23:12:23 -0800
committerCarl Worth <cworth@raht.cworth.org>2006-03-22 23:12:23 -0800
commitcabe94a15c277bb8a5f0c71f25cc8bc9e22ecb41 (patch)
tree66cbf7fd861b48315968428d07d7d99fe87bffb2 /src/cairo-hash-private.h
parenta193f70b94667808f573caa5b82a1bf50281555e (diff)
downloadcairo-cabe94a15c277bb8a5f0c71f25cc8bc9e22ecb41.tar.gz
Make all hash/cache keys_equal function accept const pointers.
Diffstat (limited to 'src/cairo-hash-private.h')
-rw-r--r--src/cairo-hash-private.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cairo-hash-private.h b/src/cairo-hash-private.h
index 6dc9c9073..617b8410d 100644
--- a/src/cairo-hash-private.h
+++ b/src/cairo-hash-private.h
@@ -85,7 +85,7 @@ typedef struct _cairo_hash_entry {
} cairo_hash_entry_t;
typedef cairo_bool_t
-(*cairo_hash_keys_equal_func_t) (void *key_a, void *key_b);
+(*cairo_hash_keys_equal_func_t) (const void *key_a, const void *key_b);
typedef cairo_bool_t
(*cairo_hash_predicate_func_t) (void *entry);