From 93bca8d480373b1fc2b94648c44d48d2fbd2fea8 Mon Sep 17 00:00:00 2001 From: Carter Li Date: Thu, 9 Jul 2026 09:23:27 +0800 Subject: [PATCH] CPU (Linux): disables printing package count by default The detection code is problematic. Let's hide the package count before we can find the root cause. --- src/modules/cpu/cpu.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/modules/cpu/cpu.c b/src/modules/cpu/cpu.c index 57b7d1f33..51f84c9f8 100644 --- a/src/modules/cpu/cpu.c +++ b/src/modules/cpu/cpu.c @@ -47,10 +47,6 @@ bool ffPrintCPU(FFCPUOptions* options) { FF_STRBUF_AUTO_DESTROY str = ffStrbufCreate(); - if (cpu.packages > 1) { - ffStrbufAppendF(&str, "%u x ", cpu.packages); - } - if (cpu.name.length > 0) { ffStrbufAppend(&str, &cpu.name); } else if (cpu.vendor.length > 0) {