From: H.G.Muller Date: Fri, 16 Oct 2015 12:40:58 +0000 (+0200) Subject: Fix exclusion header fix X-Git-Url: http://winboard.nl/cgi-bin?a=commitdiff_plain;h=5f8c62afe87259d178655c2b57edf7af80b5e166;p=xboard.git Fix exclusion header fix --- 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);