From f29eef5ba5e62f4ccdc99439e2d4f070d9406a33 Mon Sep 17 00:00:00 2001 From: H.G. Muller Date: Mon, 13 Feb 2012 22:05:26 +0100 Subject: [PATCH] Remove a debug printf The parsePV debug printf becomes extremely verbose with -fSAN, -sSAN, so it was deleted. --- backend.c | 3 --- 1 files changed, 0 insertions(+), 3 deletions(-) diff --git a/backend.c b/backend.c index c8e3da7..313c8d2 100644 --- a/backend.c +++ b/backend.c @@ -5329,9 +5329,6 @@ ParsePV (char *pv, Boolean storeComments, Boolean atEnd) if(nr == 0 && !storeComments && *pv == '(') pv++; // first (ponder) move can be in parentheses lastParseAttempt = pv; valid = ParseOneMove(pv, endPV, &moveType, &fromX, &fromY, &toX, &toY, &promoChar); -if(appData.debugMode){ -fprintf(debugFP,"parsePV: %d %c%c%c%c yy='%s'\nPV = '%s'\n", valid, fromX+AAA, fromY+ONE, toX+AAA, toY+ONE, yy_textstr, pv); -} if(!valid && nr == 0 && ParseOneMove(pv, endPV-1, &moveType, &fromX, &fromY, &toX, &toY, &promoChar)){ nr++; moveType = Comment; // First move has been played; kludge to make sure we continue -- 1.7.0.4