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 <alan.coopersmith@oracle.com>
This commit is contained in:
Alan Coopersmith 2018-05-05 14:43:30 -07:00
parent 82ca630875
commit 796f754cba

View file

@ -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]);