From fada9d0d1c35f22ebd5706e3f54127624ad7a380 Mon Sep 17 00:00:00 2001 From: H.G.Muller Date: Fri, 7 Nov 2014 09:37:21 +0100 Subject: [PATCH] Remove relaying of engine output to GUI for debugging A prints statement used for debugging was left in the source, which would relay any engine output to the GUI as comment line. Problem was that XBoard chokes on lines that contain "not found" even if they are commented. --- uci.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/uci.c b/uci.c index bb6d0b2..0675320 100644 --- a/uci.c +++ b/uci.c @@ -330,7 +330,7 @@ int uci_parse(uci_t * uci, const char string[]) { ASSERT(string!=NULL); // init -gui_send(GUI, "# %s\n", string); + event = EVENT_NONE; // parse -- 1.7.0.4