aboutsummaryrefslogtreecommitdiff
path: root/gdb/remote-es1800.c
diff options
context:
space:
mode:
Diffstat (limited to 'gdb/remote-es1800.c')
-rw-r--r--gdb/remote-es1800.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/remote-es1800.c b/gdb/remote-es1800.c
index 5329869..7f57579 100644
--- a/gdb/remote-es1800.c
+++ b/gdb/remote-es1800.c
@@ -595,7 +595,7 @@ damn_b (rate)
for (i = 0; baudtab[i].rate != 0; i++)
{
- if (!strcmp (rate, baudtab[i].rate))
+ if (STREQ (rate, baudtab[i].rate))
{
return (baudtab[i].damn_b);
}
@@ -1307,7 +1307,7 @@ verify_break (vec)
{
memory_error (status, memaddress);
}
- return (strcmp (instr, buf));
+ return (STRCMP (instr, buf));
}
return (-1);
}