mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-11 06:20:23 +02:00
avoid deprecated functions in SCM_VALIDATE_VECTOR_LEN
* libguile/validate.h (SCM_VALIDATE_VECTOR_LEN): Don't use deprecated functions.
This commit is contained in:
parent
1005628ab5
commit
9082ff2d90
1 changed files with 1 additions and 1 deletions
|
@ -378,7 +378,7 @@
|
|||
|
||||
#define SCM_VALIDATE_VECTOR_LEN(pos, v, len) \
|
||||
do { \
|
||||
SCM_ASSERT (SCM_VECTORP (v) && len == SCM_VECTOR_LENGTH (v), v, pos, FUNC_NAME); \
|
||||
SCM_ASSERT (scm_is_vector (v) && len == scm_c_vector_length (v), v, pos, FUNC_NAME); \
|
||||
} while (0)
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue