console: Mark an unused parameter as such

This signal handler is only called for SIGWINCH, so it doesn't need
to look at its parameter.

Signed-off-by: Simon McVittie <smcv@collabora.com>
This commit is contained in:
Simon McVittie
2022-04-24 11:02:09 +01:00
parent c71f7aefa1
commit f8b7343a29

View File

@@ -143,7 +143,7 @@ glnx_console_lines (void)
}
static void
on_sigwinch (int signum)
on_sigwinch (G_GNUC_UNUSED int signum)
{
cached_columns = 0;
cached_lines = 0;