diff options
author | Eric Andersen <andersen@codepoet.org> | 2004-02-10 11:47:57 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2004-02-10 11:47:57 +0000 |
commit | b340a56ee0c0f39329aa2397a81263215b25de7c (patch) | |
tree | 14e4187e38825b155ec546e33d148a8db2e44063 /ldso/include | |
parent | c0847e68b7330e6897e3a07fd7f489ab2e8aeaba (diff) |
Fix function prototype to match the official ELF standard hash function
Diffstat (limited to 'ldso/include')
-rw-r--r-- | ldso/include/dl-hash.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ldso/include/dl-hash.h b/ldso/include/dl-hash.h index 246ed2608..2d41e009a 100644 --- a/ldso/include/dl-hash.h +++ b/ldso/include/dl-hash.h @@ -75,7 +75,7 @@ extern int _dl_linux_dynamic_link(void); extern char * _dl_library_path; extern char * _dl_not_lazy; -extern unsigned long _dl_elf_hash(const char * name); +extern unsigned long _dl_elf_hash(const unsigned char *name); static inline int _dl_symbol(char * name) { |