Break loop on EAGAIN.

This commit is contained in:
Ernie Pasveer
2022-03-06 18:03:15 -06:00
parent f9cebcb34d
commit 550b97bdde
+1 -1
View File
@@ -215,7 +215,7 @@ void SeerConsoleWidget::handleConsoleOutput (int socketfd) {
if (n < 0) {
if (errno == EAGAIN) {
continue;
break;
}
if (errno == EIO) {