mirror of
https://github.com/haproxy/haproxy.git
synced 2026-02-03 20:39:41 -05: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
1 changed files with 1 additions and 1 deletions
|
|
@ -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 a new issue