Fix MSVC warning introduced in ea1db8ae70.

Discussion: https://postgr.es/m/CA+hUKGJR1BhCORa5WdvwxztD3arhENcwaN1zEQ1Upg20BwjKWA@mail.gmail.com
Reported-by: Thomas Munro
This commit is contained in:
Jeff Davis 2023-04-04 15:14:21 -07:00
parent f303ec6210
commit 36320cbc16
2 changed files with 2 additions and 0 deletions

View File

@ -2908,6 +2908,7 @@ icu_language_tag(const char *loc_str, int elevel)
ereport(ERROR,
(errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
errmsg("ICU is not supported in this build")));
return NULL; /* keep compiler quiet */
#endif /* not USE_ICU */
}

View File

@ -2298,6 +2298,7 @@ icu_language_tag(const char *loc_str)
return langtag;
#else
pg_fatal("ICU is not supported in this build");
return NULL; /* keep compiler quiet */
#endif
}