From 33960dd493c029b2fa07e1c991d0712294c821ff Mon Sep 17 00:00:00 2001 From: root Date: Sat, 20 Apr 2019 21:33:47 -0400 Subject: [PATCH] clear the gdb error message --- plugins/c9.ide.run.debug/debuggers/gdb/shim.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/c9.ide.run.debug/debuggers/gdb/shim.js b/plugins/c9.ide.run.debug/debuggers/gdb/shim.js index d78f2f2b9..a4dd60ed3 100755 --- a/plugins/c9.ide.run.debug/debuggers/gdb/shim.js +++ b/plugins/c9.ide.run.debug/debuggers/gdb/shim.js @@ -653,7 +653,7 @@ function GDB() { this.proc.on("error", function(e) { console.error("ERROR while launching the debugger:"); if (e.code == "ENOENT") { - console.log("\t\"gdbserver\" is not installed"); + console.log("\t\"gdb\" is not installed"); } else { console.error(e); }