Changeset 444
- Timestamp:
- 07/19/10 09:35:14 (2 months ago)
- Files:
-
- trunk/functions/stdio/fgetc.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/functions/stdio/fgetc.c
r437 r444 21 21 if ( stream->ungetidx > 0 ) 22 22 { 23 return stream->ungetbuf[ --(stream->ungetidx) ];23 return (unsigned char)stream->ungetbuf[ --(stream->ungetidx) ]; 24 24 } 25 return stream->buffer[stream->bufidx++];25 return (unsigned char)stream->buffer[stream->bufidx++]; 26 26 } 27 27
