aboutsummaryrefslogtreecommitdiff
path: root/libiberty/bsearch.c
diff options
context:
space:
mode:
Diffstat (limited to 'libiberty/bsearch.c')
-rw-r--r--libiberty/bsearch.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libiberty/bsearch.c b/libiberty/bsearch.c
index bb5555e..771d5de 100644
--- a/libiberty/bsearch.c
+++ b/libiberty/bsearch.c
@@ -79,7 +79,7 @@ bsearch (register const void *key, const void *base0,
p = base + (lim >> 1) * size;
cmp = (*compar)(key, p);
if (cmp == 0)
- return (p);
+ return (void *)p;
if (cmp > 0) { /* key > p: move right */
base = (const char *)p + size;
lim--;