From e0070fba4369833f1e9384146f1539c1eaaa8bd4 Mon Sep 17 00:00:00 2001 From: Igor Kulaychuk Date: Mon, 9 Apr 2018 16:26:57 +0300 Subject: [PATCH] Fix MI message output --- src/debug/netcoredbg/miprotocol.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/debug/netcoredbg/miprotocol.cpp b/src/debug/netcoredbg/miprotocol.cpp index d47dc38..9477fdd 100644 --- a/src/debug/netcoredbg/miprotocol.cpp +++ b/src/debug/netcoredbg/miprotocol.cpp @@ -523,7 +523,7 @@ void MIProtocol::EmitModuleEvent(ModuleEvent event) void MIProtocol::EmitOutputEvent(OutputEvent event) { if (event.source.empty()) - MIProtocol::Printf("=message,text=\"%s\",send-to=\"output-window\"\"\n", + MIProtocol::Printf("=message,text=\"%s\",send-to=\"output-window\"\n", MIProtocol::EscapeMIValue(event.output).c_str()); else MIProtocol::Printf("=message,text=\"%s\",send-to=\"output-window\",source=\"%s\"\n", -- 2.7.4