Comment change: exclude unreachable condition from coverage

This commit is contained in:
Rhodri James 2017-06-08 17:02:21 +01:00 committed by Sebastian Pipping
parent 19d0115623
commit 6fd7365bfb

View file

@ -1295,7 +1295,7 @@ XmlUtf8Encode(int c, char *buf)
};
if (c < 0)
return 0;
return 0; /* LCOV_EXCL_LINE: this case is always eliminated beforehand */
if (c < min2) {
buf[0] = (char)(c | UTF8_cval1);
return 1;