diff options
Diffstat (limited to 'gdbserver/tracepoint.cc')
-rw-r--r-- | gdbserver/tracepoint.cc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gdbserver/tracepoint.cc b/gdbserver/tracepoint.cc index b308c82..e1044dc 100644 --- a/gdbserver/tracepoint.cc +++ b/gdbserver/tracepoint.cc @@ -20,7 +20,6 @@ #include "gdbthread.h" #include "gdbsupport/rsp-low.h" -#include <ctype.h> #include <fcntl.h> #include <unistd.h> #include <chrono> @@ -1867,7 +1866,7 @@ add_tracepoint_action (struct tracepoint *tpoint, const char *packet) trace_debug ("Want to collect registers"); ++act; /* skip past hex digits of mask for now */ - while (isxdigit(*act)) + while (c_isxdigit(*act)) ++act; break; } |