From ec03beb361dbcb177975ae20c5beb66c0a42734e Mon Sep 17 00:00:00 2001 From: Geoff McLane Date: Fri, 19 May 2017 18:37:44 +0200 Subject: [PATCH] Issue #552 - remove no 'case default:' warning in most gcc versions Seems too small for a version bump. Closes #552 --- src/message.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/message.c b/src/message.c index afea879..6a1b856 100755 --- a/src/message.c +++ b/src/message.c @@ -243,6 +243,7 @@ void TY_(ReportNotice)(TidyDocImpl* doc, Node *element, Node *node, uint code) tagtype = tidyLocalizedString( TIDYCUSTOMINLINE_STRING ); break; case TidyCustomPre: + default: tagtype = tidyLocalizedString( TIDYCUSTOMPRE_STRING ); break; }