From 86810a4b025a0f9ada51ad959963bee00082a3c9 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Wed, 29 Apr 2020 00:03:19 +0200 Subject: [PATCH] LibLine: Actually fix build :^) --- Libraries/LibLine/Editor.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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);