guile-commits
[Top][All Lists]
Advanced

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

[Guile-commits] branch master updated: Fix cast enabling SCM_DEBUG_TYPIN


From: Daniel Llorens
Subject: [Guile-commits] branch master updated: Fix cast enabling SCM_DEBUG_TYPING_STRICTNESS 2
Date: Thu, 28 May 2020 11:04:46 -0400

This is an automated email from the git hooks/post-receive script.

lloda pushed a commit to branch master
in repository guile.

The following commit(s) were added to refs/heads/master by this push:
     new 4677c12  Fix cast enabling SCM_DEBUG_TYPING_STRICTNESS 2
4677c12 is described below

commit 4677c12803a9a100bd0bfbde8e2bf44db9eb5ec9
Author: Daniel Llorens <lloda@sarc.name>
AuthorDate: Wed May 27 18:32:52 2020 +0200

    Fix cast enabling SCM_DEBUG_TYPING_STRICTNESS 2
---
 libguile/filesys.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libguile/filesys.c b/libguile/filesys.c
index 4f71153..39bfd38 100644
--- a/libguile/filesys.c
+++ b/libguile/filesys.c
@@ -1762,7 +1762,7 @@ SCM_DEFINE (scm_opendir, "opendir", 1, 0, 0,
     SCM_SYSERROR;
 
   SCM_RETURN_NEWSMOB2 (scm_tc16_dir | (SCM_DIR_FLAG_OPEN << 16),
-                      ds, SCM_PACK_POINTER (mutex));
+                      ds, SCM_UNPACK (SCM_PACK_POINTER (mutex)));
 }
 #undef FUNC_NAME
 



reply via email to

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