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/posix.c | |
parent | 304b56da60ffa89989cf2943b046058083c76a3c (diff) | |
download | guile-4260a7fced0ab02e1bb284f11f1e1b645975a713.tar.gz |
Lots of fixes with respect to strict typing.
Diffstat (limited to 'libguile/posix.c')
-rw-r--r-- | libguile/posix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/posix.c b/libguile/posix.c index 554a7297e..f71605de0 100644 --- a/libguile/posix.c +++ b/libguile/posix.c @@ -322,7 +322,7 @@ SCM_DEFINE (scm_getgrgid, "getgr", 0, 1, 0, SCM *ve; result = scm_make_vector (SCM_MAKINUM (4), SCM_UNSPECIFIED); ve = SCM_VELTS (result); - if (SCM_UNBNDP (name) || (name == SCM_BOOL_F)) + if (SCM_UNBNDP (name) || SCM_FALSEP (name)) { SCM_SYSCALL (entry = getgrent ()); if (! entry) |