From: guido@trentalancia.com (Guido Trentalancia) Date: Mon, 05 Jun 2017 16:56:34 +0200 Subject: [refpolicy] [PATCH] fc_sort: avoid compiler warning/error Message-ID: <1496674594.4528.3.camel@trentalancia.com> To: refpolicy@oss.tresys.com List-Id: refpolicy.oss.tresys.com Fix a "-Werror=implicit-fallthrough" compiler warning/error on the switch statement. Signed-off-by: Guido Trentalancia --- support/fc_sort.c | 1 + 1 file changed, 1 insertion(+) --- a/support/fc_sort.c 2017-03-29 17:57:54.576386420 +0200 +++ b/support/fc_sort.c 2017-06-05 16:43:51.623729385 +0200 @@ -292,6 +292,7 @@ void fc_fill_data(file_context_node_t *f /* If a escape character is found, * skip the next character. */ c++; + break; default: /* If no meta character has been found yet, * add one to the stem length. */