Skip to content

Commit f375d2f

Browse files
authored
Update isa.c
fixed white spaces changing incorrect tab and space for alignment.
1 parent 887531f commit f375d2f

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
@@ -46,7 +46,7 @@ struct cpuinfo_x86_isa cpuinfo_x86_detect_isa(
4646
(max_base_index >= 7) ? cpuidex(7, 0) : (struct cpuid_regs){0, 0, 0, 0};
4747
const struct cpuid_regs structured_feature_info1 =
4848
(max_base_index >= 7) ? cpuidex(7, 1) : (struct cpuid_regs){0, 0, 0, 0};
49-
const struct cpuid_regs structured_feature_info2 =
49+
const struct cpuid_regs structured_feature_info2 =
5050
(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);

0 commit comments

Comments
 (0)