Silence a warning
We don't care if we read a byte from the pipe.
This commit is contained in:
parent
23010c60d4
commit
d93b241a65
|
@ -1266,7 +1266,7 @@ process_winch_input (GIOChannel *source,
|
||||||
Application *app = data;
|
Application *app = data;
|
||||||
|
|
||||||
char c;
|
char c;
|
||||||
read (g_io_channel_unix_get_fd (source), &c, 1);
|
(void) read (g_io_channel_unix_get_fd (source), &c, 1);
|
||||||
|
|
||||||
update_curses_terminal_size ();
|
update_curses_terminal_size ();
|
||||||
app_process_resize (app);
|
app_process_resize (app);
|
||||||
|
|
Loading…
Reference in New Issue