# HG changeset patch # User Toomas Soome # Date 1542834964 -7200 # Node ID 13d2cba2e2317b4a7c47dafed004527a84c5f577 # Parent da4207e17ba1c8f59995f5c40e1771af7f0bcf8a 11939 libgen: this statement may fall through Reviewed by: Matthias Scheler Approved by: Dan McDonald diff -r da4207e17ba1 -r 13d2cba2e231 usr/src/lib/libgen/common/reg_compile.c --- a/usr/src/lib/libgen/common/reg_compile.c Mon Aug 19 20:54:40 2019 +0000 +++ b/usr/src/lib/libgen/common/reg_compile.c Wed Nov 21 23:16:04 2018 +0200 @@ -404,8 +404,11 @@ break; } - /* Drop through to default to use \ to turn off special chars */ - + /* + * Drop through to default to use \ to turn off + * special chars + */ + /* FALLTHROUGH */ defchar: default: lastep = ep;