1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-20 03:30:27 +02:00

vm: Fix another typo.

Fix typo introduced in efc33cd149.

* libguile/vm.c (return_unused_stack_to_os): Remove extra 'while'.
This commit is contained in:
Ludovic Courtès 2018-06-24 12:32:13 +02:00 committed by Andy Wingo
parent e40b5b54ff
commit ffc1b9f3ac

View file

@ -604,7 +604,6 @@ return_unused_stack_to_os (struct scm_vm *vp)
do
ret = madvise ((void *) lo, hi - lo, MADV_DONTNEED);
while (ret && errno == -EAGAIN);
while (ret && errno == EAGAIN);
if (ret)