aboutsummaryrefslogtreecommitdiff
path: root/gdb/break-cond-parse.c
diff options
context:
space:
mode:
Diffstat (limited to 'gdb/break-cond-parse.c')
-rw-r--r--gdb/break-cond-parse.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/break-cond-parse.c b/gdb/break-cond-parse.c
index 31b5343..b771344 100644
--- a/gdb/break-cond-parse.c
+++ b/gdb/break-cond-parse.c
@@ -66,12 +66,12 @@ find_next_token (const char **curr, parse_direction direction)
{
gdb_assert (direction == parse_direction::backward);
- while (isspace (**curr))
+ while (c_isspace (**curr))
--(*curr);
tok_end = *curr;
- while (!isspace (**curr))
+ while (!c_isspace (**curr))
--(*curr);
tok_start = (*curr) + 1;