Fix unportable use of isspace(), per buildfarm results.

REL8_3_STABLE
Tom Lane 19 years ago
parent 78c84ad49e
commit c11b8dcdbb
  1. 2
      contrib/tsearch2/stopword.c

@ -48,7 +48,7 @@ readstoplist(text *in, StopList * s)
while (fgets(buf, sizeof(buf), hin))
{
pbuf = buf;
while( *pbuf && !isspace( *pbuf ) )
while( *pbuf && !isspace((unsigned char) *pbuf ) )
pbuf++;
*pbuf = '\0';

Loading…
Cancel
Save