PhysicalMemory: fix output format

This commit is contained in:
李通洲
2024-05-12 20:17:57 +08:00
parent df2862996b
commit 217bb6657e
+1 -1
View File
@@ -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)