From 46655ee919352e5c95b4485d0b920b285d8abd86 Mon Sep 17 00:00:00 2001 From: Basile Burg Date: Thu, 1 Dec 2016 03:05:35 +0100 Subject: [PATCH] fix linux version comp broken --- src/ce_gdb.pas | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ce_gdb.pas b/src/ce_gdb.pas index 81aca05e..27b92ea5 100644 --- a/src/ce_gdb.pas +++ b/src/ce_gdb.pas @@ -1558,7 +1558,7 @@ begin gdbCommand('break _d_switch_error'); gdbCommand('-gdb-set mi-async on'); if not fOptions.stopAllThreadsOnBreak then - gdbCommand('-gdb-set non-stop on'); + gdbCommand('-gdb-set non-stop on') else gdbCommand('-gdb-set non-stop off'); fGdb.OnReadData := @gdboutJsonize;