mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-22 06:57:51 +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 */
|
||||
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);
|
||||
|
||||
Io_channel::invoke_all_interrupt_handlers(Sysio::SIG_WINCH);
|
||||
|
Loading…
Reference in New Issue
Block a user