Fix typo in TLS initialization code

This commit is contained in:
LemonBoy 2019-09-09 19:50:46 +02:00 committed by Andrew Kelley
parent f7721ac37c
commit e4c3067617

View File

@ -141,7 +141,7 @@ pub fn initTLS() void {
elf.AT_PHENT => at_phent = auxv[i].a_un.a_val,
elf.AT_PHNUM => at_phnum = auxv[i].a_un.a_val,
elf.AT_PHDR => at_phdr = auxv[i].a_un.a_val,
elf.AT_HWCAP => at_phdr = auxv[i].a_un.a_val,
elf.AT_HWCAP => at_hwcap = auxv[i].a_un.a_val,
else => continue,
}
}