diff --git a/expat/lib/xmlparse.c b/expat/lib/xmlparse.c index a4e091e7..931aa0ea 100644 --- a/expat/lib/xmlparse.c +++ b/expat/lib/xmlparse.c @@ -8542,11 +8542,13 @@ unsignedCharToPrintable(unsigned char c) { return "\\xFE"; case 255: return "\\xFF"; + // LCOV_EXCL_START default: assert(0); /* never gets here */ return "dead code"; } assert(0); /* never gets here */ + // LCOV_EXCL_STOP } #endif /* XML_GE == 1 */