From 1cb53177cc3f0c87f4ecc8434a9593a6ecaced3d Mon Sep 17 00:00:00 2001 From: Jarek Syrylak Date: Mon, 2 Jul 2018 00:15:21 +0100 Subject: [PATCH] Fix handler for libraries query. --- src/core/gdbstub/gdbstub.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/gdbstub/gdbstub.cpp b/src/core/gdbstub/gdbstub.cpp index 7776249c8f..9493327198 100644 --- a/src/core/gdbstub/gdbstub.cpp +++ b/src/core/gdbstub/gdbstub.cpp @@ -670,7 +670,7 @@ static void HandleQuery() { buffer += ""; for (auto module : modules) { buffer += - fmt::format(R"*("
)*", + fmt::format(R"*(")*", module.name, module.beg); } buffer += "";