[v1.05][X86] Small fix in newline

This commit is contained in:
Dr-Noob
2024-07-17 08:52:24 +01:00
parent 5dc2234e97
commit 41a194948d

View File

@@ -720,11 +720,11 @@ struct topology* get_topology_info(struct cpuInfo* cpu, struct cache* cach, int
} }
if(!toporet) { if(!toporet) {
#ifdef __linux__ #ifdef __linux__
printWarn("Failed to retrieve topology from APIC, using udev...\n"); printWarn("Failed to retrieve topology from APIC, using udev...");
get_topology_from_udev(topo); get_topology_from_udev(topo);
#else #else
if (cpu->maxLevels >= 0x00000004) if (cpu->maxLevels >= 0x00000004)
printErr("Failed to retrieve topology from APIC, assumming default values...\n"); printErr("Failed to retrieve topology from APIC, assumming default values...");
topo->logical_cores = UNKNOWN_DATA; topo->logical_cores = UNKNOWN_DATA;
topo->physical_cores = UNKNOWN_DATA; topo->physical_cores = UNKNOWN_DATA;
topo->smt_available = 1; topo->smt_available = 1;