From: Philipp Stanner Date: Tue, 7 Jun 2022 11:06:56 +0000 (+0200) Subject: CODING_STYLE: add forgotten fallthrough X-Git-Tag: lxc-5.0.0~10^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3bba8eade740fa501c19ddfeee39986939be255e;p=thirdparty%2Flxc.git CODING_STYLE: add forgotten fallthrough Signed-off-by: Philipp Stanner --- diff --git a/CODING_STYLE.md b/CODING_STYLE.md index bf8b304a5..e4949b622 100644 --- a/CODING_STYLE.md +++ b/CODING_STYLE.md @@ -689,6 +689,8 @@ int lxc_attach_run_command(void *payload) case ENOEXEC: ret = 126; break; + case ENOTDIR: + __fallthrough; case ENOENT: ret = 127; break;