Remove always false condition

pull/3530/head
Isaac Connor 2022-07-14 10:02:58 -04:00
parent 173cc8af21
commit 4805064d61
1 changed files with 0 additions and 2 deletions

View File

@ -35,8 +35,6 @@ bool FifoStream::sendRAWFrames() {
return false;
}
while ( (bytes_read = read(fd, buffer, RAW_BUFFER)) ) {
if ( bytes_read == 0 )
continue;
if ( bytes_read < 0 ) {
Error("Problem during reading: %s", strerror(errno));
close(fd);