diff --git a/Libraries/LibLine/Editor.cpp b/Libraries/LibLine/Editor.cpp index 12a750cafe..e32dfcd978 100644 --- a/Libraries/LibLine/Editor.cpp +++ b/Libraries/LibLine/Editor.cpp @@ -1049,7 +1049,8 @@ Vector Editor::vt_dsr() more_junk_to_read = false; (void)select(1, &readfds, nullptr, nullptr, &timeout); if (FD_ISSET(0, &readfds)) { - (void)read(0, buf, 16); + auto nread = read(0, buf, 16); + (void)nread; more_junk_to_read = true; } } while (more_junk_to_read);