Browse Source

[sys/info] Indentation nitpick.

Jeroen van Rijn 2 years ago
parent
commit
b6ed117726
1 changed files with 1 additions and 1 deletions
  1. 1 1
      core/sys/info/cpu_intel.odin

+ 1 - 1
core/sys/info/cpu_intel.odin

@@ -75,7 +75,7 @@ init_cpu_features :: proc "c" () {
 	}
 
 	os_supports_avx := false
-		if .os_xsave in set {
+	if .os_xsave in set {
 		eax, _ := xgetbv(0)
 		os_supports_avx = is_set(1, eax) && is_set(2, eax)
 	}