; * src/vm-limit.c (get_lim_data): Fix a typo. (Bug#18238)

This commit is contained in:
Eli Zaretskii 2021-10-23 09:15:40 +03:00
parent efdffd86c5
commit 598732c899

View file

@ -126,7 +126,7 @@ get_lim_data (void)
dos_memory_info (&totalram, &freeram, &totalswap, &freeswap);
lim_data = freeram;
/* Don't believe they will give us more that 0.5 GB. */
/* Don't believe they will give us more than 0.5 GB. */
if (lim_data > 512U * 1024U * 1024U)
lim_data = 512U * 1024U * 1024U;
}