diff options
author | Marcel Raad <Marcel.Raad@teamviewer.com> | 2018-07-09 18:52:05 +0200 |
---|---|---|
committer | Marcel Raad <Marcel.Raad@teamviewer.com> | 2018-08-21 18:53:45 +0200 |
commit | 15ed9f87e3a1f91bd7b4a5291edf268b843e5987 (patch) | |
tree | 7dd8ff713e570a7b216f4e675357e3dbb4a62aa8 /src/tool_urlglob.c | |
parent | 60776a0515c2a8f572902ad5bcc9f63eeaeafa84 (diff) | |
download | curl-15ed9f87e3a1f91bd7b4a5291edf268b843e5987.tar.gz |
curl-compilers: enable -Wimplicit-fallthrough=4 for GCC
This enables level 4 instead of the default level 3, which of the
currently used comments only allows /* FALLTHROUGH */ to silence the
warning.
Closes https://github.com/curl/curl/pull/2747
Diffstat (limited to 'src/tool_urlglob.c')
-rw-r--r-- | src/tool_urlglob.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tool_urlglob.c b/src/tool_urlglob.c index 2848d44e1..e1b994108 100644 --- a/src/tool_urlglob.c +++ b/src/tool_urlglob.c @@ -114,7 +114,7 @@ static CURLcode glob_set(URLGlob *glob, char **patternp, if(multiply(amount, pat->content.Set.size + 1)) return GLOBERROR("range overflow", 0, CURLE_URL_MALFORMAT); - /* fall-through */ + /* FALLTHROUGH */ case ',': *buf = '\0'; @@ -157,7 +157,7 @@ static CURLcode glob_set(URLGlob *glob, char **patternp, ++pattern; ++(*posp); } - /* intentional fallthrough */ + /* FALLTHROUGH */ default: *buf++ = *pattern++; /* copy character to set element */ ++(*posp); |