forked from Telodendria/Telodendria
Fix bit flag check.
This commit is contained in:
parent
4a27f50538
commit
2a92d0de7e
1 changed files with 1 additions and 1 deletions
|
@ -307,7 +307,7 @@ StreamGetc(Stream * stream)
|
||||||
return c;
|
return c;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (stream->flags & EOF)
|
if (stream->flags & STREAM_EOF)
|
||||||
{
|
{
|
||||||
return EOF;
|
return EOF;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue