mirror of
https://github.com/borgbackup/borg.git
synced 2025-02-22 14:11:27 +00:00
Merge pull request #6378 from braewoods/warnings
suppress -Wimplicit-fallthrough warning
This commit is contained in:
commit
34261aac0e
1 changed files with 1 additions and 1 deletions
|
@ -196,7 +196,7 @@ static inline int unpack_execute(unpack_context* ctx, const char* data, size_t l
|
||||||
|
|
||||||
|
|
||||||
_fixed_trail_again:
|
_fixed_trail_again:
|
||||||
++p;
|
++p; // fallthrough (suppresses -Wimplicit-fallthrough)
|
||||||
|
|
||||||
default:
|
default:
|
||||||
if((size_t)(pe - p) < trail) { goto _out; }
|
if((size_t)(pe - p) < trail) { goto _out; }
|
||||||
|
|
Loading…
Reference in a new issue