mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-02-25 05:01:24 +00:00
[sys] Correct spelling of signals
Is a signlas a girl with a sign?
This commit is contained in:
parent
5f45c8a0d2
commit
43ce0eb3ec
1 changed files with 3 additions and 3 deletions
|
@ -1033,7 +1033,7 @@ signal_handler (int sig)
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
hook_signlas (void)
|
hook_signals (void)
|
||||||
{
|
{
|
||||||
// catch signals
|
// catch signals
|
||||||
signal (SIGINT, signal_handler);
|
signal (SIGINT, signal_handler);
|
||||||
|
@ -1095,7 +1095,7 @@ signal_handler (int sig, siginfo_t *info, void *ucontext)
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
hook_signlas (void)
|
hook_signals (void)
|
||||||
{
|
{
|
||||||
// catch signals
|
// catch signals
|
||||||
struct sigaction action = {};
|
struct sigaction action = {};
|
||||||
|
@ -1119,7 +1119,7 @@ hook_signlas (void)
|
||||||
VISIBLE void
|
VISIBLE void
|
||||||
Sys_Init (void)
|
Sys_Init (void)
|
||||||
{
|
{
|
||||||
hook_signlas ();
|
hook_signals ();
|
||||||
|
|
||||||
Cvar_Init_Hash ();
|
Cvar_Init_Hash ();
|
||||||
Cmd_Init_Hash ();
|
Cmd_Init_Hash ();
|
||||||
|
|
Loading…
Reference in a new issue