mirror of
https://github.com/postgres/postgres.git
synced 2025-07-28 23:42:10 +03:00
Further -Wimplicit-fallthrough cleanup.
Tom's earlier commit in 41c912cad1
didn't update a few cases that
are only encountered with the non-standard --with-llvm config
flag. Additionally there's also one case that appears to be a
deficiency in gcc's (up to trunk as of a few days ago) detection of
"fallthrough" comments - changing the placement slightly fixes that.
Author: Andres Freund
Discussion: https://postgr.es/m/20180502003239.wfnqu7ekz7j7imm4@alap3.anarazel.de
This commit is contained in:
@ -360,9 +360,10 @@ retry_masked:
|
||||
case EPIPE:
|
||||
/* Set flag for EPIPE */
|
||||
REMEMBER_EPIPE(spinfo, true);
|
||||
/* FALL THRU */
|
||||
|
||||
#ifdef ECONNRESET
|
||||
/* FALL THRU */
|
||||
|
||||
case ECONNRESET:
|
||||
#endif
|
||||
printfPQExpBuffer(&conn->errorMessage,
|
||||
|
Reference in New Issue
Block a user