From c0e0d3e2e924b41a42db3c3cd8329421b06436e3 Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Wed, 26 Jan 2005 18:49:39 +0000 Subject: [PATCH] Avoid unnecessary dependence on u_int16_t, per buildfarm failure. (It doesn't compile on HPUX either...) --- contrib/tsearch2/ispell/spell.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/tsearch2/ispell/spell.c b/contrib/tsearch2/ispell/spell.c index f9053c6301..cbb6b61a73 100644 --- a/contrib/tsearch2/ispell/spell.c +++ b/contrib/tsearch2/ispell/spell.c @@ -1124,7 +1124,7 @@ NINormalizeWord(IspellDict * Conf, char *word) { char **res = NormalizeSubWord(Conf, word, 0); TSLexeme *lcur=NULL, *lres=NULL; - u_int16_t NVariant=1; + uint16 NVariant=1; if (res) { char **ptr = res;