Skip to content

Commit 05dd959

Browse files
authored
Update isa.c
fix the spaces to tab at line 50 to fix indenting issue.
1 parent 501b34b commit 05dd959

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/x86/isa.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ struct cpuinfo_x86_isa cpuinfo_x86_detect_isa(
4747
const struct cpuid_regs structured_feature_info1 =
4848
(max_base_index >= 7) ? cpuidex(7, 1) : (struct cpuid_regs){0, 0, 0, 0};
4949
const struct cpuid_regs structured_feature_info2 =
50-
(max_base_index >= 7) ? cpuidex(0x24, 0) : (struct cpuid_regs){0, 0, 0, 0};
50+
(max_base_index >= 7) ? cpuidex(0x24, 0) : (struct cpuid_regs){0, 0, 0, 0};
5151

5252
const uint32_t processor_capacity_info_index = UINT32_C(0x80000008);
5353
const struct cpuid_regs processor_capacity_info = (max_extended_index >= processor_capacity_info_index)

0 commit comments

Comments
 (0)