diff options
author | Andrew Cagney <cagney@redhat.com> | 2001-01-19 08:01:47 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2001-01-19 08:01:47 +0000 |
commit | 494b7ec97ed90fe6aa44e6d4cfe94554b9b5f10f (patch) | |
tree | 98b956ec422e9523d7a437d6310eed8b464d7458 /gdb/standalone.c | |
parent | 8038e1e2b1e8d83aa68a88c77ab5b58eb74e7938 (diff) | |
download | gdb-494b7ec97ed90fe6aa44e6d4cfe94554b9b5f10f.zip gdb-494b7ec97ed90fe6aa44e6d4cfe94554b9b5f10f.tar.gz gdb-494b7ec97ed90fe6aa44e6d4cfe94554b9b5f10f.tar.bz2 |
Replace STRCMP with strcmp()
Diffstat (limited to 'gdb/standalone.c')
-rw-r--r-- | gdb/standalone.c | 2 |
1 files changed, 1 insertions, 1 deletions
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)); |