diff options
| author | Tom Lane | 2005-01-26 18:49:39 +0000 |
|---|---|---|
| committer | Tom Lane | 2005-01-26 18:49:39 +0000 |
| commit | c0e0d3e2e924b41a42db3c3cd8329421b06436e3 (patch) | |
| tree | 09ef31eec4e6c5af27e8c525bf00c34a2eca911a /contrib | |
| parent | 1ac9f0e9f79c02a48c374dee206d3952e5520f84 (diff) | |
Avoid unnecessary dependence on u_int16_t, per buildfarm failure.
(It doesn't compile on HPUX either...)
Diffstat (limited to 'contrib')
| -rw-r--r-- | contrib/tsearch2/ispell/spell.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/tsearch2/ispell/spell.c b/contrib/tsearch2/ispell/spell.c index f9053c63011..cbb6b61a73f 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; |
