From e9736f74e7b3aeffc34fbb8b24d87f98af166e66 Mon Sep 17 00:00:00 2001 From: Sami Kerola Date: Tue, 7 Nov 2017 13:37:59 +0000 Subject: [PATCH] getdata: do not use 'else' after 'continue' Signed-off-by: Sami Kerola --- src/getdata.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/getdata.c b/src/getdata.c index eb92c66..e77b76c 100644 --- a/src/getdata.c +++ b/src/getdata.c @@ -271,8 +271,8 @@ void parse_config(int is_include, const char *restrict config_file, if (i == 0) { newclause = 1; continue; - } else - break; + } + break; case '}': if (0 < quote) break;