Silence buildfarm warning chatter from bd1276a3c.

Buildfarm members using -Wextra complained about "warning: suggest
braces around empty body in an 'if' statement".  Do it gcc's way,
though I see no actual readability benefit in this.
This commit is contained in:
Tom Lane 2024-10-08 11:15:16 -04:00
parent 05d1b9b5c2
commit c01fd93088

View File

@ -2122,7 +2122,9 @@ match_previous_words(int pattern_id,
/* Dummy statement, allowing all the match rules to look like "else if" */
if (0)
/* skip */ ;
{
/* skip */
}
/* gen_tabcomplete.pl begins special processing here */
/* BEGIN GEN_TABCOMPLETE */