diff options
Diffstat (limited to 'src/core/gdbstub/gdbstub.cpp')
| -rw-r--r-- | src/core/gdbstub/gdbstub.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/gdbstub/gdbstub.cpp b/src/core/gdbstub/gdbstub.cpp index 7fc72d801..ceb993ea1 100644 --- a/src/core/gdbstub/gdbstub.cpp +++ b/src/core/gdbstub/gdbstub.cpp | |||
| @@ -413,7 +413,7 @@ static void HandleQuery() { | |||
| 413 | 413 | ||
| 414 | if (strcmp(query, "TStatus") == 0) { | 414 | if (strcmp(query, "TStatus") == 0) { |
| 415 | SendReply("T0"); | 415 | SendReply("T0"); |
| 416 | } else if (strncmp(query, "Supported:", strlen("Supported:")) == 0) { | 416 | } else if (strncmp(query, "Supported", strlen("Supported")) == 0) { |
| 417 | // PacketSize needs to be large enough for target xml | 417 | // PacketSize needs to be large enough for target xml |
| 418 | SendReply("PacketSize=800;qXfer:features:read+"); | 418 | SendReply("PacketSize=800;qXfer:features:read+"); |
| 419 | } else if (strncmp(query, "Xfer:features:read:target.xml:", | 419 | } else if (strncmp(query, "Xfer:features:read:target.xml:", |