*** empty log message ***

This commit is contained in:
2005-05-30 07:19:09 +00:00
parent c76d2d29b8
commit 022dd7ed4d
7 changed files with 18 additions and 42 deletions

View File

@ -12,9 +12,9 @@ static int get_char (xp_cint_t* ch, void* arg)
xp_cint_t c;
c = xp_fgetc(xp_stdin);
if (c == XP_EOF) {
if (c == XP_CHAR_EOF) {
if (xp_ferror(xp_stdin)) return -1;
c = XP_EOF;
c = XP_CHAR_EOF;
}
*ch = c;