mirror of
http://git.haproxy.org/git/haproxy.git/
synced 2025-02-12 16:37:20 +00:00
BUILD: tools: use __fallthrough in url_decode()
This avoids one build warning when preprocessing happens before compiling with gcc >= 7.
This commit is contained in:
parent
cff89874ea
commit
7de8de0bf8
@ -2099,7 +2099,7 @@ int url_decode(char *string, int in_form)
|
||||
break;
|
||||
case '?':
|
||||
in_form = 1;
|
||||
/* fall through */
|
||||
__fallthrough;
|
||||
default:
|
||||
*out++ = *in;
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user