1
0
Fork 0
mirror of https://github.com/anrieff/libcpuid synced 2024-11-20 23:01:51 +00:00

cpuid_tool: proper indentation for printing EPC sections.

This commit is contained in:
Veselin Georgiev 2016-10-04 00:37:10 +03:00
parent 722a12bad2
commit 4c776cb465

View file

@ -512,7 +512,7 @@ static void print_sgx_data(const struct cpu_raw_data_t* raw, const struct cpu_id
fprintf(fout, "SGX EPC sections count : %d\n", data->sgx.num_epc_sections);
for (i = 0; i < data->sgx.num_epc_sections; i++) {
struct cpu_epc_t epc = cpuid_get_epc(i, raw);
fprintf(fout, "SGX EPC section #%-8d: start = %llx, size = %llu\n", i,
fprintf(fout, " SGX EPC section #%-8d: start = %llx, size = %llu\n", i,
(unsigned long long) epc.start_addr, (unsigned long long) epc.length);
}
}