guile-commits
[Top][All Lists]
Advanced

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

[Guile-commits] 01/05: vm: Fix another typo.


From: Ludovic Courtès
Subject: [Guile-commits] 01/05: vm: Fix another typo.
Date: Sun, 24 Jun 2018 17:41:48 -0400 (EDT)

civodul pushed a commit to branch stable-2.2
in repository guile.

commit 444648441ad7550e8afad8c7dfaa00605d727eba
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 92d5680..c8ec6e1 100644
--- a/libguile/vm.c
+++ b/libguile/vm.c
@@ -902,7 +902,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]