cmXScore.c : Remove space between section and '*' on heel marked even-ness sections.

This commit is contained in:
kevin 2016-04-14 19:37:26 -04:00
parent e629fb7cd6
commit d1b77e9f7e

View File

@ -1740,7 +1740,7 @@ const cmChar_t* cmXsFormatMeasurementCsvField( unsigned flags, unsigned fl, char
if( cmIsFlag(flags,fl) )
{
if( sectionId != 0 )
snprintf(buf,bufN-1,"%c %i %c",abbrev,sectionId, cmIsFlag(flags,kHeelXsFl)?'*':' ');
snprintf(buf,bufN-1,"%c %i%c",abbrev,sectionId, cmIsFlag(flags,kHeelXsFl)?'*':' ');
else
buf[0] = abbrev;
}