diff options
Diffstat (limited to 'Alc/helpers.c')
-rw-r--r-- | Alc/helpers.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/helpers.c b/Alc/helpers.c index 4ffda46c..26ed535a 100644 --- a/Alc/helpers.c +++ b/Alc/helpers.c @@ -234,7 +234,7 @@ void FillCPUCaps(ALuint capfilter) #endif #ifdef HAVE_NEON FILE *file = fopen("/proc/cpuinfo", "rt"); - if(file) + if(!file) ERR("Failed to open /proc/cpuinfo, cannot check for NEON support\n"); else { |