Tiny bugfix: signed -> unsigned char decl. -Olin

This commit is contained in:
shivers 1999-07-11 20:17:14 +00:00
parent 0a0dd89ee7
commit 48a5f0516c
1 changed files with 1 additions and 1 deletions

View File

@ -436,7 +436,7 @@ scheme_value read_delim(const char *delims, char *buf, int gobble,
** stdio FILE*. Yech.
*/
if( IsChar(peekc) ) {
char c = EXTRACT_CHAR(peekc);
unsigned char c = EXTRACT_CHAR(peekc);
if( delims[c] ) { /* Is c in cset? */
if( gobble ) *PortData_Peek(data) = SCHFALSE;
*nread = 0;