From aef770fcbad123f870e0d210397ac6c9983b0c94 Mon Sep 17 00:00:00 2001 From: Ken Cooke Date: Thu, 11 Feb 2016 16:39:23 -0800 Subject: [PATCH] fix typo --- libraries/audio/src/AudioHRTF.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/audio/src/AudioHRTF.cpp b/libraries/audio/src/AudioHRTF.cpp index 7f1136f29d..7fadf073a1 100644 --- a/libraries/audio/src/AudioHRTF.cpp +++ b/libraries/audio/src/AudioHRTF.cpp @@ -155,7 +155,7 @@ static bool cpuSupportsAVX() { if (__get_cpuid(0x1, &eax, &ebx, &ecx, &edx) && ((ecx & mask) == mask)) { __asm__("xgetbv" : "=a"(eax), "=d"(edx) : "c"(0)); - if (eax & 0x6) == 0x6) { + if ((eax & 0x6) == 0x6) { result = true; } }