guile-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Guile-commits] 36/58: vm: Fix another typo.


From: Andy Wingo
Subject: [Guile-commits] 36/58: vm: Fix another typo.
Date: Tue, 7 Aug 2018 06:58:36 -0400 (EDT)

wingo pushed a commit to branch lightning
in repository guile.

commit ffc1b9f3acf052ef5d7d305ef082fd417fccf769
Author: Ludovic Courtès <address@hidden>
Date:   Sun Jun 24 12:32:13 2018 +0200

    vm: Fix another typo.
    
    Fix typo introduced in efc33cd1497c00c5ebf961e834efc1d85f3e28ac.
    
    * libguile/vm.c (return_unused_stack_to_os): Remove extra 'while'.
---
 libguile/vm.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/libguile/vm.c b/libguile/vm.c
index 83a2b21..fa2f171 100644
--- a/libguile/vm.c
+++ b/libguile/vm.c
@@ -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)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]