mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-04-30 11:50:28 +02:00
* debug.c (debugobj_print): coerce scm_intprint arg 1 to long, not
int.
This commit is contained in:
parent
8ed5a245b3
commit
c22a0f5570
1 changed files with 1 additions and 1 deletions
|
@ -558,7 +558,7 @@ static int
|
|||
debugobj_print (SCM obj, SCM port, scm_print_state *pstate SCM_UNUSED)
|
||||
{
|
||||
scm_puts ("#<debug-object ", port);
|
||||
scm_intprint ((int) SCM_DEBUGOBJ_FRAME (obj), 16, port);
|
||||
scm_intprint ((long) SCM_DEBUGOBJ_FRAME (obj), 16, port);
|
||||
scm_putc ('>', port);
|
||||
return 1;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue