Merge pull request #6378 from braewoods/warnings

suppress -Wimplicit-fallthrough warning
This commit is contained in:
TW 2022-03-05 14:20:24 +01:00 committed by GitHub
commit 34261aac0e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -196,7 +196,7 @@ static inline int unpack_execute(unpack_context* ctx, const char* data, size_t l
_fixed_trail_again:
++p;
++p; // fallthrough (suppresses -Wimplicit-fallthrough)
default:
if((size_t)(pe - p) < trail) { goto _out; }