mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-11-28 09:02:44 +00:00
Prevent sign extension (again)
This commit is contained in:
parent
fcb113145c
commit
a2f7d5dc07
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=95097
@ -163,7 +163,7 @@ static __inline int gpbc(void)
|
||||
|
||||
if (bp > bufbase) {
|
||||
if (*--bp)
|
||||
return (*bp);
|
||||
return ((unsigned char)*bp);
|
||||
else
|
||||
return (EOF);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user