From 494b7ec97ed90fe6aa44e6d4cfe94554b9b5f10f Mon Sep 17 00:00:00 2001 From: Andrew Cagney Date: Fri, 19 Jan 2001 08:01:47 +0000 Subject: Replace STRCMP with strcmp() --- gdb/standalone.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gdb/standalone.c') diff --git a/gdb/standalone.c b/gdb/standalone.c index 1aa76d5..07e062d 100644 --- a/gdb/standalone.c +++ b/gdb/standalone.c @@ -145,7 +145,7 @@ open (char *filename, int modes) for (next = files_start; *(int *) next; next += *(int *) next) { - if (!STRCMP (next + 4, filename)) + if (!strcmp (next + 4, filename)) { sourcebeg = next + 4 + strlen (next + 4) + 1; sourcebeg = (char *) (((int) sourcebeg + 3) & (-4)); -- cgit v1.1