]> git.ipfire.org Git - thirdparty/postgresql.git/commit
Remove useless fallthrough annotation
authorPeter Eisentraut <peter@eisentraut.org>
Thu, 19 Feb 2026 07:41:03 +0000 (08:41 +0100)
committerPeter Eisentraut <peter@eisentraut.org>
Thu, 19 Feb 2026 07:50:58 +0000 (08:50 +0100)
commit0c3fbb3fef1e805d39b7bae576a3b2da4f9e1858
treed76a8dced7233fde40f84432f6da6e7298701eeb
parent21e323e941cf6ff02f931cd21bcfe4ab2cb5d622
Remove useless fallthrough annotation

A fallthrough attribute after the last case is a constraint violation
in C23, and clang warns about it (not about this comment, but if we
changed it to an attribute).  Remove it.  (There was apparently never
anything after this to fall through to, even in the first commit
da07a1e8565.)

Reviewed-by: Jelte Fennema-Nio <postgres@jeltef.nl>
Discussion: https://www.postgresql.org/message-id/flat/76a8efcd-925a-4eaf-bdd1-d972cd1a32ff%40eisentraut.org
src/backend/postmaster/postmaster.c