diff options
author | Marius Vollmer <mvo@zagadka.de> | 2004-05-06 16:43:14 +0000 |
---|---|---|
committer | Marius Vollmer <mvo@zagadka.de> | 2004-05-06 16:43:14 +0000 |
commit | f5710d53b1a67d7b965701b4b34004b9db1a6813 (patch) | |
tree | e6e4e2a562a827adba4f3c374c1152016dd6b68c /libguile/mallocs.c | |
parent | 41a2f6fc0c62afeb09bd7fbae4e9eca794c26bbe (diff) | |
download | guile-f5710d53b1a67d7b965701b4b34004b9db1a6813.tar.gz |
Use SCM_SMOB_* instead of SCM_CELL_* as appropriate. Use
SCM_SMOB_FLAGS and SCM_SET_SMOB_FLAGS instead of accessing the
zeroth word directly. Use SCM_SMOB_PREDICATE as appropriate.
Diffstat (limited to 'libguile/mallocs.c')
-rw-r--r-- | libguile/mallocs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/mallocs.c b/libguile/mallocs.c index a0a1eaedc..c1fe4c9f4 100644 --- a/libguile/mallocs.c +++ b/libguile/mallocs.c @@ -54,7 +54,7 @@ static int malloc_print (SCM exp, SCM port, scm_print_state *pstate SCM_UNUSED) { scm_puts("#<malloc ", port); - scm_intprint (SCM_CELL_WORD_1 (exp), 16, port); + scm_intprint (SCM_SMOB_DATA (exp), 16, port); scm_putc('>', port); return 1; } |