aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorEli Zaretskii2025-01-21 21:25:15 +0200
committerEli Zaretskii2025-01-21 21:25:15 +0200
commitce50a1d3c18bcf0e5f51f4ed49f292f7be31010d (patch)
tree8e45561bc54779a0aec8bebbf0745a97f8fff481 /src
parent58d3d4820ad327f07cea5894a9675bf30553461e (diff)
downloademacs-ce50a1d3c18bcf0e5f51f4ed49f292f7be31010d.tar.gz
emacs-ce50a1d3c18bcf0e5f51f4ed49f292f7be31010d.zip
; * src/w32.c (w32_memory_info): Fix coding style of last change.
Diffstat (limited to 'src')
-rw-r--r--src/w32.c4
1 files 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,
7659{ 7659{
7660 MEMORYSTATUS memst; 7660 MEMORYSTATUS memst;
7661 MEMORY_STATUS_EX memstex; 7661 MEMORY_STATUS_EX memstex;
7662 memstex.dwLength = sizeof(memstex); 7662 memstex.dwLength = sizeof (memstex);
7663 /* Use GlobalMemoryStatusEx if available, as it can report more than 7663 /* Use GlobalMemoryStatusEx if available, as it can report more than
7664 2GB of memory. */ 7664 2GB of memory. */
7665 if (global_memory_status_ex (&memstex)) 7665 if (global_memory_status_ex (&memstex))
@@ -7671,7 +7671,7 @@ w32_memory_info (unsigned long long *totalram, unsigned long long *freeram,
7671 return 0; 7671 return 0;
7672 } 7672 }
7673 7673
7674 memst.dwLength = sizeof(memst); 7674 memst.dwLength = sizeof (memst);
7675 if (global_memory_status (&memst)) 7675 if (global_memory_status (&memst))
7676 { 7676 {
7677 *totalram = memst.dwTotalPhys; 7677 *totalram = memst.dwTotalPhys;