From 5f8c62afe87259d178655c2b57edf7af80b5e166 Mon Sep 17 00:00:00 2001 From: H.G.Muller Date: Fri, 16 Oct 2015 14:40:58 +0200 Subject: [PATCH] Fix exclusion header fix --- engineoutput.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/engineoutput.c b/engineoutput.c index c0f915f..522a186 100644 --- a/engineoutput.c +++ b/engineoutput.c @@ -231,7 +231,7 @@ SetProgramStats (FrontEndProgramStats * stats) // now directly called by back-en header[which][0] = NULLCHAR; if(gameMode == AnalyzeMode) { ChessProgramState *cps = (which ? &second : &first); - char exclu = cps->excludeMoves ? exclusionHeader : ""; + char *exclu = cps->excludeMoves ? exclusionHeader : ""; if((multi = MultiPV(cps)) >= 0) { snprintf(header[which], MSG_SIZ, "\t%s viewpoint\t\tfewer / Multi-PV setting = %d / more\n", appData.whitePOV || appData.scoreWhite ? "white" : "mover", cps->option[multi].value); -- 1.7.0.4