Fix typo in hard-coded name of SIGSTKFLT

This commit is contained in:
Mahmoud Al-Qudsi 2024-12-23 14:29:00 -06:00
parent 7bafb0d1ae
commit f3dd4ee022

View file

@ -402,7 +402,7 @@ const SIGNAL_TABLE : &[LookupEntry] = &[
LookupEntry::new(libc::SIGINFO, L!("SIGINFO"), L!("Information request")),
#[cfg(target_os = "linux")]
LookupEntry::new(libc::SIGSTKFLT, L!("SISTKFLT"), L!("Stack fault")),
LookupEntry::new(libc::SIGSTKFLT, L!("SIGSTKFLT"), L!("Stack fault")),
#[cfg(target_os = "linux")]
LookupEntry::new(libc::SIGIOT, L!("SIGIOT"), L!("Abort (Alias for SIGABRT)")),