diff options
Diffstat (limited to 'gdb/remote.c')
-rw-r--r-- | gdb/remote.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/remote.c b/gdb/remote.c index efff972..d60a606 100644 --- a/gdb/remote.c +++ b/gdb/remote.c @@ -2741,9 +2741,9 @@ remote_wait (ptid_t ptid, struct target_waitstatus *status) { p1 = strchr (p, ':'); if (p1 == NULL) - warning (_("Malformed packet(a) (missing colon): %s\n\ + error (_("Malformed packet(a) (missing colon): %s\n\ Packet: '%s'\n"), - p, buf); + p, buf); if (strncmp (p, "thread", p1 - p) == 0) { p_temp = unpack_varlen_hex (++p1, &thread_num); |