diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2019-11-03 16:10:23 -0500 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2019-11-03 16:10:38 -0500 |
commit | 6dd92138d1efd0da89e90b98bd71b76c3905f9aa (patch) | |
tree | d18a4fcbb0cb53a85fea3e8e56c63477f41afd46 | |
parent | 43753c2cfbdd9870e68671abcc9dd377881071b0 (diff) | |
download | postgresql-6dd92138d1efd0da89e90b98bd71b76c3905f9aa.tar.gz postgresql-6dd92138d1efd0da89e90b98bd71b76c3905f9aa.zip |
Suppress warning from older compilers.
Commit 8af1624e3 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.
-rw-r--r-- | src/backend/tsearch/spell.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/backend/tsearch/spell.c b/src/backend/tsearch/spell.c index 1b8766659c4..abc31cb356d 100644 --- a/src/backend/tsearch/spell.c +++ b/src/backend/tsearch/spell.c @@ -1173,8 +1173,7 @@ getAffixFlagSet(IspellDict *Conf, char *s) ereport(ERROR, (errcode(ERRCODE_CONFIG_FILE_ERROR), errmsg("invalid affix alias \"%s\"", s))); - else - return VoidString; + return VoidString; } else return s; |