]> granicus.if.org Git - postgresql/commitdiff
Avoid unnecessary dependence on u_int16_t, per buildfarm failure.
authorTom Lane <tgl@sss.pgh.pa.us>
Wed, 26 Jan 2005 18:49:39 +0000 (18:49 +0000)
committerTom Lane <tgl@sss.pgh.pa.us>
Wed, 26 Jan 2005 18:49:39 +0000 (18:49 +0000)
(It doesn't compile on HPUX either...)

contrib/tsearch2/ispell/spell.c

index f9053c63011a087e95e22915afc1ba60bac9de0a..cbb6b61a73f46db6689259de0a367dd4edd0b0d1 100644 (file)
@@ -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;