Rev 33 | Rev 108 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 33 | Rev 81 | ||
---|---|---|---|
Line 1075... | Line 1075... | ||
1075 | column = 0; |
1075 | column = 0; |
1076 | EPDSortSAN(); |
1076 | EPDSortSAN(); |
1077 | for (index = 0; index < count; index++) { |
1077 | for (index = 0; index < count; index++) { |
1078 | m = *EPDFetchMove(index); |
1078 | m = *EPDFetchMove(index); |
1079 | EPDSANEncode(&m, san); |
1079 | EPDSANEncode(&m, san); |
1080 | length = strlen |
1080 | length = (siT) strlen(san); // Pierre-Marie Baty -- added type cast |
1081 | if ((column + 1 + length) < columnL) { |
1081 | if ((column + 1 + length) < columnL) { |
1082 | sprintf(tbufv, " %s", san); |
1082 | sprintf(tbufv, " %s", san); |
1083 | EGPrintTB(); |
1083 | EGPrintTB(); |
1084 | column += 1 + length; |
1084 | column += 1 + length; |
1085 | } else { |
1085 | } else { |