summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2019-11-03 16:10:23 -0500
committerTom Lane <tgl@sss.pgh.pa.us>2019-11-03 16:11:05 -0500
commitd43bd9dce854ff8c2a088999dd860b05d19ebc5a (patch)
tree0426439edc2a0ca22812153601f009eac655354c
parent51b9ac5588bcb350bd9433307ee6a6236b01039b (diff)
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.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/backend/tsearch/spell.c b/src/backend/tsearch/spell.c
index 07feb68449c..27a852a06af 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;