Remove unnecessary semicolons after goto labels
authorJohn Naylor <john.naylor@postgresql.org>
Mon, 10 Oct 2022 08:08:38 +0000 (15:08 +0700)
committerJohn Naylor <john.naylor@postgresql.org>
Mon, 10 Oct 2022 08:08:38 +0000 (15:08 +0700)
commit6291b2546ce729aa912fd070628c6b9eb1f84947
tree54544772ab76859b1ab302dcd967a252427d4914
parent357cfefb09115292cfb98d504199e6df8201c957
Remove unnecessary semicolons after goto labels

According to the C standard, a label must followed by a statement.
If there was ever a time we needed an empty statement here, it was
a long time ago.

Japin Li

Reviewed by Julien Rouhaud
Discussion: https://www.postgresql.org/message-id/MEYP282MB16690F40189A4F060B41D56DB65E9%40MEYP282MB1669.AUSP282.PROD.OUTLOOK.COM
src/backend/access/transam/slru.c
src/backend/executor/nodeModifyTable.c