diff options
author | Mike Pall <mike> | 2018-01-29 13:06:13 +0100 |
---|---|---|
committer | Mike Pall <mike> | 2018-01-29 13:06:13 +0100 |
commit | d4ee80342770d1281e2ce877f8ae8ab1d99e6528 (patch) | |
tree | cd8db1f5da7f2bfbecc4092f2646665128dad227 /src/luajit.c | |
parent | b03a56f28ec360bbcf43091afd0607890a4a33c7 (diff) | |
download | luajit-d4ee80342770d1281e2ce877f8ae8ab1d99e6528.tar.gz luajit-d4ee80342770d1281e2ce877f8ae8ab1d99e6528.tar.bz2 luajit-d4ee80342770d1281e2ce877f8ae8ab1d99e6528.zip |
Fix GCC 7 -Wimplicit-fallthrough warnings.
Diffstat (limited to '')
-rw-r--r-- | src/luajit.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/luajit.c b/src/luajit.c index 9e15b26d..0e18dc5f 100644 --- a/src/luajit.c +++ b/src/luajit.c | |||
@@ -419,6 +419,7 @@ static int collectargs(char **argv, int *flags) | |||
419 | break; | 419 | break; |
420 | case 'e': | 420 | case 'e': |
421 | *flags |= FLAGS_EXEC; | 421 | *flags |= FLAGS_EXEC; |
422 | /* fallthrough */ | ||
422 | case 'j': /* LuaJIT extension */ | 423 | case 'j': /* LuaJIT extension */ |
423 | case 'l': | 424 | case 'l': |
424 | *flags |= FLAGS_OPTION; | 425 | *flags |= FLAGS_OPTION; |