diff options
Diffstat (limited to 'src/osd/modules/debugger/debuggdbstub.cpp')
-rw-r--r-- | src/osd/modules/debugger/debuggdbstub.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/osd/modules/debugger/debuggdbstub.cpp b/src/osd/modules/debugger/debuggdbstub.cpp index 1dce80aaf52..8f3b670dc39 100644 --- a/src/osd/modules/debugger/debuggdbstub.cpp +++ b/src/osd/modules/debugger/debuggdbstub.cpp @@ -678,7 +678,7 @@ void debug_gdbstub::send_reply(const char *str) checksum += str[i]; std::string reply = string_format("$%s#%02x", str, checksum); - m_socket.puts(reply.c_str()); + m_socket.puts(reply); } |