JANITORIAL: Silence some more GCC 7 fall through warnings

I think these are the last one that were already flagged as being
deliberate.
This commit is contained in:
Torbjörn Andersson 2017-08-06 16:54:38 +02:00
parent a57c5b385d
commit 665f5c99b2
6 changed files with 9 additions and 8 deletions

View file

@ -245,8 +245,8 @@ void LocalWebserver::handleClient(uint32 i) {
break;
// if no handler, answer with default BAD REQUEST
// fallthrough
}
// fall through
case BAD_REQUEST:
setClientGetHandler(_client[i], "<html><head><title>ScummVM - Bad Request</title></head><body>BAD REQUEST</body></html>", 400);