diff options
author | ian <ian@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-01-17 14:18:39 +0000 |
---|---|---|
committer | ian <ian@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-01-17 14:18:39 +0000 |
commit | 12adcb643403db8821332960ca7e1ba8eed12058 (patch) | |
tree | 8775f5c85585ca6af63878cc44d09a490ccd93c3 /libgo/runtime/go-map-delete.c | |
parent | 0fd261dc4017c0786d65a6bda69817762f1a54d9 (diff) | |
download | gcc-12adcb643403db8821332960ca7e1ba8eed12058.tar.gz |
libgo: Solaris and Irix compatibility patches.
From Rainer Orth.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@183246 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libgo/runtime/go-map-delete.c')
-rw-r--r-- | libgo/runtime/go-map-delete.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libgo/runtime/go-map-delete.c b/libgo/runtime/go-map-delete.c index cb10d8dcdc0..b25760fc820 100644 --- a/libgo/runtime/go-map-delete.c +++ b/libgo/runtime/go-map-delete.c @@ -20,7 +20,7 @@ __go_map_delete (struct __go_map *map, const void *key) const struct __go_map_descriptor *descriptor; const struct __go_type_descriptor *key_descriptor; uintptr_t key_offset; - _Bool (*equalfn) (const void*, const void*, size_t); + _Bool (*equalfn) (const void*, const void*, uintptr_t); size_t key_hash; size_t key_size; size_t bucket_index; |