From 7c11f77a034fe9f0e47ea0d7b8ea79f13e42acfa Mon Sep 17 00:00:00 2001 From: Rhodri James Date: Thu, 8 Jun 2017 19:13:06 +0100 Subject: [PATCH] Comment change: exclude more unreachable code from coverage --- expat/lib/xmltok.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/expat/lib/xmltok.c b/expat/lib/xmltok.c index 8fa59200..db4a5c8c 100644 --- a/expat/lib/xmltok.c +++ b/expat/lib/xmltok.c @@ -1318,7 +1318,7 @@ XmlUtf8Encode(int c, char *buf) buf[3] = (char)((c & 0x3f) | 0x80); return 4; } - return 0; + return 0; /* LCOV_EXCL_LINE: this case too is eliminated before calling */ } int FASTCALL -- 2.40.0