summaryrefslogtreecommitdiff
path: root/bfd/pdp11.c
diff options
context:
space:
mode:
authorAlan Modra <amodra@gmail.com>2020-06-11 15:48:12 +0930
committerAlan Modra <amodra@gmail.com>2020-06-11 15:50:33 +0930
commitf0aa30258af17ab0234951cbf9644837a99036e5 (patch)
tree6bc6050c81babd65e4493ca5e6b3ae2e560ed1c9 /bfd/pdp11.c
parentfd17d1e695518ab45c6a06596df2e6c09c1d1a46 (diff)
downloadbinutils-gdb-f0aa30258af17ab0234951cbf9644837a99036e5.tar.gz
PR26107, Compilation failure in pdp11.c
PR 26107 * pdp11.c (is_stab): Replace legacy "index" function with "strchr".
Diffstat (limited to 'bfd/pdp11.c')
-rw-r--r--bfd/pdp11.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/bfd/pdp11.c b/bfd/pdp11.c
index fecaa21ef5f..c9b26c20523 100644
--- a/bfd/pdp11.c
+++ b/bfd/pdp11.c
@@ -336,8 +336,8 @@ static int
is_stab (int type, const char *name)
{
if (type == N_GSYM || type == N_FUN)
- return (index(name, ':') != NULL);
- return (type > N_FUN);
+ return strchr (name, ':') != NULL;
+ return type > N_FUN;
}
static int