From 217bb6657e75ae0cb580fb8a19724c7c22bf13fc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=8E=E9=80=9A=E6=B4=B2?= Date: Sun, 12 May 2024 20:17:57 +0800 Subject: [PATCH] PhysicalMemory: fix output format --- src/modules/physicalmemory/physicalmemory.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/physicalmemory/physicalmemory.c b/src/modules/physicalmemory/physicalmemory.c index 16525ac62..8b92517a7 100644 --- a/src/modules/physicalmemory/physicalmemory.c +++ b/src/modules/physicalmemory/physicalmemory.c @@ -44,7 +44,7 @@ void ffPrintPhysicalMemory(FFPhysicalMemoryOptions* options) if (device->maxSpeed > 0) printf("-%u", device->maxSpeed); if (device->runningSpeed > 0 && device->runningSpeed != device->maxSpeed) - printf(" at %u MT/s\n", device->runningSpeed); + printf(" @ %u MT/s", device->runningSpeed); if (device->vendor.length > 0) printf(" (%s)", device->vendor.chars); if (device->ecc)