Skip to content
Snippets Groups Projects
Commit 88d03d73 authored by Tom Lane's avatar Tom Lane
Browse files

Suppress warning from older compilers.

Commit 8af1624e introduced a warning about possibly returning
without a value, on compilers that don't realize that ereport(ERROR)
doesn't return.  Tweak the code to avoid that.

Per buildfarm.  Back-patch to 9.6, like the aforesaid commit.
parent 65cdf8bc
No related branches found
Tags
No related merge requests found
......@@ -1173,7 +1173,6 @@ getAffixFlagSet(IspellDict *Conf, char *s)
ereport(ERROR,
(errcode(ERRCODE_CONFIG_FILE_ERROR),
errmsg("invalid affix alias \"%s\"", s)));
else
return VoidString;
}
else
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment