From 41a194948d54b9fd854be274c5ae138d8cc3cda4 Mon Sep 17 00:00:00 2001 From: Dr-Noob Date: Wed, 17 Jul 2024 08:52:24 +0100 Subject: [PATCH] [v1.05][X86] Small fix in newline --- src/x86/cpuid.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/x86/cpuid.c b/src/x86/cpuid.c index 677d513..769464b 100644 --- a/src/x86/cpuid.c +++ b/src/x86/cpuid.c @@ -720,11 +720,11 @@ struct topology* get_topology_info(struct cpuInfo* cpu, struct cache* cach, int } if(!toporet) { #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); #else 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->physical_cores = UNKNOWN_DATA; topo->smt_available = 1;