From ce50a1d3c18bcf0e5f51f4ed49f292f7be31010d Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Tue, 21 Jan 2025 21:25:15 +0200 Subject: [PATCH] ; * src/w32.c (w32_memory_info): Fix coding style of last change. --- src/w32.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/w32.c b/src/w32.c index 0d876951cf6..1135462ba8c 100644 --- a/src/w32.c +++ b/src/w32.c @@ -7659,7 +7659,7 @@ w32_memory_info (unsigned long long *totalram, unsigned long long *freeram, { MEMORYSTATUS memst; MEMORY_STATUS_EX memstex; - memstex.dwLength = sizeof(memstex); + memstex.dwLength = sizeof (memstex); /* Use GlobalMemoryStatusEx if available, as it can report more than 2GB of memory. */ if (global_memory_status_ex (&memstex)) @@ -7671,7 +7671,7 @@ w32_memory_info (unsigned long long *totalram, unsigned long long *freeram, return 0; } - memst.dwLength = sizeof(memst); + memst.dwLength = sizeof (memst); if (global_memory_status (&memst)) { *totalram = memst.dwTotalPhys;