From 4eefab8ccfb59b03dfd05bb6bee5bf70c6ba20c3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=8E=E9=80=9A=E6=B4=B2?= Date: Mon, 14 Apr 2025 10:54:35 +0800 Subject: [PATCH] CPU (Linux): fix build --- src/detection/cpu/cpu_arm.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/detection/cpu/cpu_arm.h b/src/detection/cpu/cpu_arm.h index 39b482bd4..cc23d4576 100644 --- a/src/detection/cpu/cpu_arm.h +++ b/src/detection/cpu/cpu_arm.h @@ -319,7 +319,7 @@ static const char* fujitsuPartId2name(uint32_t partId) switch (partId) { case 0x001: return "A64FX"; - case 0x003: return "MONAKA" + case 0x003: return "MONAKA"; default: return NULL; } }