diff options
| author | Xavier Del Campo Romero <xavi.dcr@tutanota.com> | 2020-12-31 00:01:58 +0100 |
|---|---|---|
| committer | Xavier Del Campo Romero <xavi.dcr@tutanota.com> | 2020-12-31 00:01:58 +0100 |
| commit | bf989aec3b1da9e8042fa834d32d50893659f5b9 (patch) | |
| tree | cd753d96bb2d6ffb5ea73e70e3fccfbd6fc0a75d | |
| parent | 28b866b150243693179ce01e8306079b648f8794 (diff) | |
Fix typo on fprintf call
| -rw-r--r-- | gdbstub/gdbstub_sys.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |
