From f9ea14e57a293e4450afa8150ab8f755198f9432 Mon Sep 17 00:00:00 2001 From: Elad Salomons Date: Thu, 20 Aug 2015 21:59:12 +0300 Subject: [PATCH] Fix HEAD and HEADLOSS results in report file --- src/input3.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/input3.c b/src/input3.c index d0922f6..96a9060 100755 --- a/src/input3.c +++ b/src/input3.c @@ -1370,7 +1370,7 @@ int reportdata() /* Check if input is a reporting criterion. */ /*** Special case needed to distinguish "HEAD" from "HEADLOSS" ***/ //(2.00.11 - LR) - if (strcomp(Tok[0], w_HEADLOSS)) i = HEADLOSS; //(2.00.11 - LR) + if (strcomp(Tok[0], t_HEADLOSS)) i = HEADLOSS; else i = findmatch(Tok[0],Fldname); //(2.00.11 - LR) if (i >= 0) //(2.00.11 - LR) /*****************************************************************/ //(2.00.11 - LR)