diff options
Diffstat (limited to 'gdb/bcache.c')
-rw-r--r-- | gdb/bcache.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/bcache.c b/gdb/bcache.c index 0f9c2a25ccc..753a916d2e8 100644 --- a/gdb/bcache.c +++ b/gdb/bcache.c @@ -33,7 +33,7 @@ */ unsigned long -hash(void *addr, int length) +hash(const void *addr, int length) { const unsigned char *k, *e; unsigned long h; @@ -127,7 +127,7 @@ expand_hash_table (struct bcache *bcache) never seen those bytes before, add a copy of them to BCACHE. In either case, return a pointer to BCACHE's copy of that string. */ void * -bcache (void *addr, int length, struct bcache *bcache) +bcache (const void *addr, int length, struct bcache *bcache) { int hash_index; struct bstring *s; |