1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-07-02 15:40:38 +02:00

Fix a couple SCM_SIMPLE_VECTOR stragglers

* libguile/filesys.c (retrieve_select_type):
* libguile/hashtab.c (rehash):
* libguile/posix.c (scm_uname):
* libguile/vectors.c (scm_c_vector_set_x):
(scm_c_make_vector): Fix some SCM_SIMPLE_VECTOR users.
This commit is contained in:
Andy Wingo 2025-06-24 10:44:33 +02:00
parent 617344f822
commit da51198ce8
4 changed files with 7 additions and 7 deletions

View file

@ -1767,7 +1767,7 @@ SCM_DEFINE (scm_uname, "uname", 0, 0, 0,
scm_c_vector_set_x (result, 4, scm_from_locale_string (buf.machine));
/*
a linux special?
SCM_SIMPLE_VECTOR_SET(result, 5, scm_from_locale_string (buf.domainname));
scm_c_vector_set_x (result, 5, scm_from_locale_string (buf.domainname));
*/
return result;
}