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