Merge pull request #4133 from dasteihn/sta/fallthrough

CODING_STYLE: add forgotten fallthrough
This commit is contained in:
Christian Brauner 2022-06-07 13:20:05 +02:00 committed by GitHub
commit 3d24d295ce
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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