CODING_STYLE: add forgotten fallthrough

Signed-off-by: Philipp Stanner <stanner@posteo.de>
This commit is contained in:
Philipp Stanner 2022-06-07 13:06:56 +02:00
parent 4cda46cb33
commit 3bba8eade7

View File

@ -689,6 +689,8 @@ int lxc_attach_run_command(void *payload)
case ENOEXEC:
ret = 126;
break;
case ENOTDIR:
__fallthrough;
case ENOENT:
ret = 127;
break;