Fixed a few additional sizeof locations
This commit is contained in:
parent
c6443d86c9
commit
21e444b2e7
3 changed files with 4 additions and 4 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue