guile-commits
[Top][All Lists]
Advanced

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

[Guile-commits] branch main updated: Align argument type of scm_to_wchar


From: Mikael Djurfeldt
Subject: [Guile-commits] branch main updated: Align argument type of scm_to_wchar with its declaration.
Date: Thu, 10 Feb 2022 06:43:56 -0500

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

mdj pushed a commit to branch main
in repository guile.

The following commit(s) were added to refs/heads/main by this push:
     new 27b86a6f3 Align argument type of scm_to_wchar with its declaration.
27b86a6f3 is described below

commit 27b86a6f32d226446b42250cf6d1261127646c93
Author: Mikael Djurfeldt <mikael@djurfeldt.com>
AuthorDate: Thu Feb 10 12:41:59 2022 +0100

    Align argument type of scm_to_wchar with its declaration.
    
    * libguile/numbers.c (scm_from_wchar): Change argument type from wchar_t
    to scm_t_wchar which is the argument type in numbers.h.
---
 libguile/numbers.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libguile/numbers.c b/libguile/numbers.c
index c4ca0b88f..f5e89b9f0 100644
--- a/libguile/numbers.c
+++ b/libguile/numbers.c
@@ -6854,7 +6854,7 @@ scm_to_wchar (SCM arg)
 }
 
 SCM
-scm_from_wchar (wchar_t arg)
+scm_from_wchar (scm_t_wchar arg)
 {
   return SCM_I_MAKINUM (arg);
 }



reply via email to

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