diff options
author | Andy Wingo <wingo@pobox.com> | 2011-07-29 09:11:24 +0200 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2011-07-29 09:11:24 +0200 |
commit | 3b08b1c24df6d89645e0d1633dac0c4a7b160e6b (patch) | |
tree | ac53505f3c6ccd6f1b4b3adbe36704176bf90417 /libguile/bytevectors.c | |
parent | 2700aa43f21d927fb208b6779a07c8f63d91c27e (diff) | |
download | guile-3b08b1c24df6d89645e0d1633dac0c4a7b160e6b.tar.gz |
minor style fix in bytevectors.c
* libguile/bytevectors.c (SCM_BYTEVECTOR_HEADER_BYTES): Use sizeof
scm_t_bits, not sizeof SCM. It's the same, but it seems like the
right thing.
Diffstat (limited to 'libguile/bytevectors.c')
-rw-r--r-- | libguile/bytevectors.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/bytevectors.c b/libguile/bytevectors.c index 7ac1fa34e..14159d28d 100644 --- a/libguile/bytevectors.c +++ b/libguile/bytevectors.c @@ -178,7 +178,7 @@ /* Bytevector type. */ #define SCM_BYTEVECTOR_HEADER_BYTES \ - (SCM_BYTEVECTOR_HEADER_SIZE * sizeof (SCM)) + (SCM_BYTEVECTOR_HEADER_SIZE * sizeof (scm_t_bits)) #define SCM_BYTEVECTOR_SET_LENGTH(_bv, _len) \ SCM_SET_CELL_WORD_1 ((_bv), (scm_t_bits) (_len)) |