Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitdb27b60

Browse files
committed
Suppress warning from older compilers.
Commit8af1624 introduced a warning about possibly returningwithout 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.
1 parent741b1aa commitdb27b60

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

‎src/backend/tsearch/spell.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1173,8 +1173,7 @@ getAffixFlagSet(IspellDict *Conf, char *s)
11731173
ereport(ERROR,
11741174
(errcode(ERRCODE_CONFIG_FILE_ERROR),
11751175
errmsg("invalid affix alias \"%s\"",s)));
1176-
else
1177-
returnVoidString;
1176+
returnVoidString;
11781177
}
11791178
else
11801179
returns;

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp