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 <ll...@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