Fixed a few additional sizeof locations
parent
c6443d86c9
commit
21e444b2e7
|
@ -370,7 +370,7 @@ static int CPU_haveARMSIMD(void)
|
|||
fd = open("/proc/self/auxv", O_RDONLY | O_CLOEXEC);
|
||||
if (fd >= 0) {
|
||||
Elf32_auxv_t aux;
|
||||
while (read(fd, &aux, sizeof aux) == sizeof aux) {
|
||||
while (read(fd, &aux, sizeof(aux)) == sizeof(aux)) {
|
||||
if (aux.a_type == AT_PLATFORM) {
|
||||
const char *plat = (const char *)aux.a_un.a_val;
|
||||
if (plat) {
|
||||
|
|
Loading…
Reference in New Issue