From 4d842ac6b68f82a6bd69f043bc08678df02bc000 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=8E=E9=80=9A=E6=B4=B2?= Date: Mon, 27 Jan 2025 21:41:55 +0800 Subject: [PATCH] CPU (Linux): fix build on PPC --- src/detection/cpu/cpu_linux.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/detection/cpu/cpu_linux.c b/src/detection/cpu/cpu_linux.c index 6e561c63e..8e6030bb0 100644 --- a/src/detection/cpu/cpu_linux.c +++ b/src/detection/cpu/cpu_linux.c @@ -305,7 +305,7 @@ static const char* parseCpuInfo( #endif #if __powerpc__ || __powerpc - (cpuMHz->length == 0 && ffParsePropLine(line, "clock :", &cpuMHz)) || //For POWER + (cpuMHz->length == 0 && ffParsePropLine(line, "clock :", cpuMHz)) || //For POWER (cpu->name.length == 0 && ffParsePropLine(line, "cpu :", &cpu->name)) || //For POWER #endif