diff options
author | Dirk Herrmann <dirk@dirk-herrmanns-seiten.de> | 2000-04-04 12:13:41 +0000 |
---|---|---|
committer | Dirk Herrmann <dirk@dirk-herrmanns-seiten.de> | 2000-04-04 12:13:41 +0000 |
commit | 4260a7fced0ab02e1bb284f11f1e1b645975a713 (patch) | |
tree | 8a1b379a2af38db99d39905b46b62044d732459c /libguile/procs.c | |
parent | 304b56da60ffa89989cf2943b046058083c76a3c (diff) | |
download | guile-4260a7fced0ab02e1bb284f11f1e1b645975a713.tar.gz |
Lots of fixes with respect to strict typing.
Diffstat (limited to 'libguile/procs.c')
-rw-r--r-- | libguile/procs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libguile/procs.c b/libguile/procs.c index 8578ff887..e09228fde 100644 --- a/libguile/procs.c +++ b/libguile/procs.c @@ -341,7 +341,7 @@ SCM_DEFINE (scm_procedure, "procedure", 1, 0, 0, return proc; } SCM_WRONG_TYPE_ARG (1, proc); - return 0; /* not reached */ + return SCM_BOOL_F; /* not reached */ } #undef FUNC_NAME @@ -366,7 +366,7 @@ scm_setter (SCM proc) /* fall through */ } SCM_WTA_DISPATCH_1 (g_setter, proc, SCM_ARG1, s_setter); - return 0; + return SCM_BOOL_F; } |