From bf989aec3b1da9e8042fa834d32d50893659f5b9 Mon Sep 17 00:00:00 2001 From: Xavier Del Campo Romero Date: Thu, 31 Dec 2020 00:01:58 +0100 Subject: Fix typo on fprintf call --- gdbstub/gdbstub_sys.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gdbstub/gdbstub_sys.c b/gdbstub/gdbstub_sys.c index 4b1d917a..f98a7abb 100644 --- a/gdbstub/gdbstub_sys.c +++ b/gdbstub/gdbstub_sys.c @@ -259,7 +259,7 @@ static int wait_ack(struct msg *msg) } while (ret < 0 && errno == EAGAIN); if (msg->type != MSG_TYPE_ACK) { - fprintf(stderr, "unexpected msg.type %d\n", msg->type); + fprintf(stderr, "wait_ack: unexpected msg.type %d\n", msg->type); return 1; } -- cgit v1.2.3