mirror of
https://github.com/Dr-Noob/cpufetch.git
synced 2026-03-25 07:50:40 +01:00
[v1.05][X86] Small fix in newline
This commit is contained in:
@@ -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;
|
||||||
|
|||||||
Reference in New Issue
Block a user