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:
Willy Tarreau 2022-11-14 07:20:09 +01:00
parent cff89874ea
commit 7de8de0bf8

View File

@ -2099,7 +2099,7 @@ int url_decode(char *string, int in_form)
break;
case '?':
in_form = 1;
/* fall through */
__fallthrough;
default:
*out++ = *in;
break;