From b2bf20e28fc659df215f94a055497471168e9158 Mon Sep 17 00:00:00 2001 From: Yonggang Luo Date: Wed, 30 Mar 2022 04:44:55 +0800 Subject: [PATCH] util: Fixes typo in function os_get_total_physical_memory Signed-off-by: Yonggang Luo Reviewed-by: Jesse Natalie Part-of: --- src/util/os_misc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util/os_misc.c b/src/util/os_misc.c index 31f1c55d6e8..367bd6c2857 100644 --- a/src/util/os_misc.c +++ b/src/util/os_misc.c @@ -269,7 +269,7 @@ os_get_total_physical_memory(uint64_t *size) *size = status.ullTotalPhys; return (ret == TRUE); #else -#error unexpected platform in os_sysinfo.c +#error unexpected platform in os_misc.c return false; #endif }