mirror of
https://github.com/postgres/postgres.git
synced 2026-07-05 15:55:50 -04:00
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:
parent
f303ec6210
commit
36320cbc16
2 changed files with 2 additions and 0 deletions
|
|
@ -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 */
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -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
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue