1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-04-29 19:30:36 +02:00

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.
This commit is contained in:
Mikael Djurfeldt 2022-02-10 12:41:59 +01:00
parent 2e10a1257f
commit 27b86a6f32

View file

@ -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);
}