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

This commit is contained in:
Tom Lane 2007-07-15 22:32:53 +00:00
parent 78c84ad49e
commit c11b8dcdbb
1 changed files with 1 additions and 1 deletions

View File

@ -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';