Remove code relict pointed out by Bernhard.

The condition should never be true, it's leftover from my
hacking/debugging code.
This commit is contained in:
Jon Siwek 2013-08-23 11:58:17 -05:00
parent 288ef20a4e
commit 6dbbce8e05

View file

@ -433,7 +433,7 @@ int64_t Raw::GetLine(FILE* arg_file)
}
if ( errno == 0 || errno == EAGAIN || errno == EWOULDBLOCK || errno == EINTR )
if ( errno == EAGAIN || errno == EWOULDBLOCK || errno == EINTR )
return -2;
else