Fix bug in S48_RECORD_TYPE: third parameter to s48_stob_ref was missing.
This commit is contained in:
parent
af976ddde2
commit
eb9410cc44
|
@ -174,7 +174,7 @@
|
||||||
type index))
|
type index))
|
||||||
'("VECTOR" "RECORD")
|
'("VECTOR" "RECORD")
|
||||||
'("(i)" "(i) + 1"))
|
'("(i)" "(i) + 1"))
|
||||||
(c-define "S48_RECORD_TYPE(x) (s48_stob_ref((x), S48_STOBTYPE_RECORD))")
|
(c-define "S48_RECORD_TYPE(x) (s48_stob_ref((x), S48_STOBTYPE_RECORD, 0))")
|
||||||
(c-define "S48_UNSAFE_RECORD_TYPE(x) (STOB_REF((x), 0))")
|
(c-define "S48_UNSAFE_RECORD_TYPE(x) (STOB_REF((x), 0))")
|
||||||
(for-each (lambda (type)
|
(for-each (lambda (type)
|
||||||
(c-define "S48_~A_LENGTH(x) (s48_stob_byte_length((x), S48_STOBTYPE_~A))"
|
(c-define "S48_~A_LENGTH(x) (s48_stob_byte_length((x), S48_STOBTYPE_~A))"
|
||||||
|
|
Loading…
Reference in New Issue