mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 07:30:19 +00:00
LibLine: Actually fix build :^)
This commit is contained in:
parent
a6fcf70e25
commit
86810a4b02
Notes:
sideshowbarker
2024-07-19 07:12:19 +09:00
Author: https://github.com/awesomekling Commit: https://github.com/SerenityOS/serenity/commit/86810a4b025
1 changed files with 2 additions and 1 deletions
|
@ -1049,7 +1049,8 @@ Vector<size_t, 2> 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);
|
||||
|
|
Loading…
Reference in a new issue