mirror of
https://github.com/postgres/postgres.git
synced 2026-04-15 22:10:45 -04:00
Fix unportable use of isspace(), per buildfarm results.
This commit is contained in:
parent
78c84ad49e
commit
c11b8dcdbb
1 changed files with 1 additions and 1 deletions
|
|
@ -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…
Reference in a new issue