mirror of
https://github.com/genodelabs/genode.git
synced 2025-01-03 04:26:45 +00:00
noux: fix compile warning
This commit is contained in:
parent
d38227f840
commit
6045277cca
@ -227,7 +227,7 @@ struct Noux::Terminal_io_channel : Io_channel
|
|||||||
{
|
{
|
||||||
/* respond to terminal-close event */
|
/* respond to terminal-close event */
|
||||||
Terminal::Session::Size const size = _terminal.size();
|
Terminal::Session::Size const size = _terminal.size();
|
||||||
if (_terminal.size().columns()*_terminal.size().lines() == 0)
|
if (size.columns()*size.lines() == 0)
|
||||||
read_buffer.add(EOF);
|
read_buffer.add(EOF);
|
||||||
|
|
||||||
Io_channel::invoke_all_interrupt_handlers(Sysio::SIG_WINCH);
|
Io_channel::invoke_all_interrupt_handlers(Sysio::SIG_WINCH);
|
||||||
|
Loading…
Reference in New Issue
Block a user