diff options
| author | Eli Zaretskii | 2025-01-21 21:25:15 +0200 |
|---|---|---|
| committer | Eli Zaretskii | 2025-01-21 21:25:15 +0200 |
| commit | ce50a1d3c18bcf0e5f51f4ed49f292f7be31010d (patch) | |
| tree | 8e45561bc54779a0aec8bebbf0745a97f8fff481 /src | |
| parent | 58d3d4820ad327f07cea5894a9675bf30553461e (diff) | |
| download | emacs-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.c | 4 |
1 files changed, 2 insertions, 2 deletions
| @@ -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; |