summaryrefslogtreecommitdiffstats
path: root/libass/ass_utils.c
diff options
context:
space:
mode:
Diffstat (limited to 'libass/ass_utils.c')
-rw-r--r--libass/ass_utils.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libass/ass_utils.c b/libass/ass_utils.c
index 8cd639d..99e2c52 100644
--- a/libass/ass_utils.c
+++ b/libass/ass_utils.c
@@ -46,11 +46,11 @@ int has_avx(void)
{
uint32_t eax = 1, ebx, ecx, edx;
ass_get_cpuid(&eax, &ebx, &ecx, &edx);
- if(!(ecx & (1 << 27))) // not OSXSAVE
+ if (!(ecx & (1 << 27))) // not OSXSAVE
return 0;
uint32_t misc = ecx;
ass_get_xgetbv(0, &eax, &edx);
- if((eax & 0x6) != 0x6)
+ if ((eax & 0x6) != 0x6)
return 0;
eax = 0;
ass_get_cpuid(&eax, &ebx, &ecx, &edx);