mirror of
https://github.com/postgres/postgres.git
synced 2025-07-27 12:41:57 +03:00
Avoid unnecessary dependence on u_int16_t, per buildfarm failure.
(It doesn't compile on HPUX either...)
This commit is contained in:
@ -1124,7 +1124,7 @@ NINormalizeWord(IspellDict * Conf, char *word)
|
|||||||
{
|
{
|
||||||
char **res = NormalizeSubWord(Conf, word, 0);
|
char **res = NormalizeSubWord(Conf, word, 0);
|
||||||
TSLexeme *lcur=NULL, *lres=NULL;
|
TSLexeme *lcur=NULL, *lres=NULL;
|
||||||
u_int16_t NVariant=1;
|
uint16 NVariant=1;
|
||||||
|
|
||||||
if (res) {
|
if (res) {
|
||||||
char **ptr = res;
|
char **ptr = res;
|
||||||
|
Reference in New Issue
Block a user