diff options
Diffstat (limited to 'libguile/frames.c')
-rw-r--r-- | libguile/frames.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/frames.c b/libguile/frames.c index 39f78e09a..c0d7d61e4 100644 --- a/libguile/frames.c +++ b/libguile/frames.c @@ -66,7 +66,7 @@ SCM_DEFINE (scm_vm_frame_p, "vm-frame?", 1, 0, 0, "") #define FUNC_NAME s_scm_vm_frame_p { - return SCM_BOOL (SCM_VM_FRAME_P (obj)); + return scm_from_bool (SCM_VM_FRAME_P (obj)); } #undef FUNC_NAME |