aboutsummaryrefslogtreecommitdiff
path: root/gdb/macrocmd.c
diff options
context:
space:
mode:
Diffstat (limited to 'gdb/macrocmd.c')
-rw-r--r--gdb/macrocmd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/macrocmd.c b/gdb/macrocmd.c
index a40049a..3db1239 100644
--- a/gdb/macrocmd.c
+++ b/gdb/macrocmd.c
@@ -325,7 +325,7 @@ extract_identifier (char **expp, int is_parameter)
char *p = *expp;
unsigned int len;
- if (is_parameter && !strncmp (p, "...", 3))
+ if (is_parameter && startswith (p, "..."))
{
/* Ok. */
}
@@ -339,7 +339,7 @@ extract_identifier (char **expp, int is_parameter)
;
}
- if (is_parameter && !strncmp (p, "...", 3))
+ if (is_parameter && startswith (p, "..."))
p += 3;
len = p - *expp;