diff options
author | Marius Vollmer <mvo@zagadka.de> | 2004-10-22 15:13:12 +0000 |
---|---|---|
committer | Marius Vollmer <mvo@zagadka.de> | 2004-10-22 15:13:12 +0000 |
commit | 0345e278f43844aba474016cbabe3383ff74a37e (patch) | |
tree | 05bae74ab0b8611148bffd0d5f777174be4b3e74 /libguile/smob.c | |
parent | f27d2057275751d6f028e122aac490c24dd2e2bd (diff) | |
download | guile-0345e278f43844aba474016cbabe3383ff74a37e.tar.gz |
* variable.c, threads.c, struct.c, stackchk.c, smob.c, root.c,
print.c, ports.c, mallocs.c, hooks.c, hashtab.c, fports.c,
guardians.c, filesys.c, coop-pthreads.c, continuations.c: Use
scm_uintprint to print unsigned integers, raw heap words, and
adresses, using a cast to scm_t_bits to turn pointers into
integers.
Diffstat (limited to 'libguile/smob.c')
-rw-r--r-- | libguile/smob.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libguile/smob.c b/libguile/smob.c index e447737bf..0778491f5 100644 --- a/libguile/smob.c +++ b/libguile/smob.c @@ -119,9 +119,9 @@ scm_smob_print (SCM exp, SCM port, scm_print_state *pstate SCM_UNUSED) scm_puts (SCM_SMOBNAME (n) ? SCM_SMOBNAME (n) : "smob", port); scm_putc (' ', port); if (scm_smobs[n].size) - scm_intprint (SCM_CELL_WORD_1 (exp), 16, port); + scm_uintprint (SCM_CELL_WORD_1 (exp), 16, port); else - scm_intprint (SCM_UNPACK (exp), 16, port); + scm_uintprint (SCM_UNPACK (exp), 16, port); scm_putc ('>', port); return 1; } |