zed: main: fix unused, remove argsused
Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Signed-off-by: Ahelenia Ziemiańska <nabijaczleweli@nabijaczleweli.xyz> Closes #12835
This commit is contained in:
parent
ab860757f5
commit
008f30c730
|
@ -36,6 +36,7 @@ static volatile sig_atomic_t _got_hup = 0;
|
||||||
static void
|
static void
|
||||||
_exit_handler(int signum)
|
_exit_handler(int signum)
|
||||||
{
|
{
|
||||||
|
(void) signum;
|
||||||
_got_exit = 1;
|
_got_exit = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -45,6 +46,7 @@ _exit_handler(int signum)
|
||||||
static void
|
static void
|
||||||
_hup_handler(int signum)
|
_hup_handler(int signum)
|
||||||
{
|
{
|
||||||
|
(void) signum;
|
||||||
_got_hup = 1;
|
_got_hup = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue