From 796f754cba6d75b676a0fc39b97802198fceda4f Mon Sep 17 00:00:00 2001 From: Alan Coopersmith Date: Sat, 5 May 2018 14:43:30 -0700 Subject: [PATCH] Change fall through comment in lcDB.c to match gcc's requirements Needs to match one of the regexps shown under https://gcc.gnu.org/onlinedocs/gcc-7.3.0/gcc/Warning-Options.html#index-Wimplicit-fallthrough Signed-off-by: Alan Coopersmith --- src/xlibi18n/lcDB.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xlibi18n/lcDB.c b/src/xlibi18n/lcDB.c index fda3ae7e..19e80aa2 100644 --- a/src/xlibi18n/lcDB.c +++ b/src/xlibi18n/lcDB.c @@ -790,7 +790,7 @@ f_right_brace( case S_VALUE: if (! store_to_database(db)) return 0; - /* fall into next case */ + /* fall through - to next case */ case S_CATEGORY: if (parse_info.name[parse_info.nest_depth] != NULL) { Xfree(parse_info.name[parse_info.nest_depth]);