diff options
author | Marius Vollmer <mvo@zagadka.de> | 2004-09-22 17:41:37 +0000 |
---|---|---|
committer | Marius Vollmer <mvo@zagadka.de> | 2004-09-22 17:41:37 +0000 |
commit | d2e53ed6f84df8c79f4bf5cf41d4f6d381bc065b (patch) | |
tree | df14a633c6d8ac08ba098651a9164a0c991d8288 /libguile/filesys.c | |
parent | a61f4e0c61695e17984b25b16fbf720b851b739c (diff) | |
download | guile-d2e53ed6f84df8c79f4bf5cf41d4f6d381bc065b.tar.gz |
*** empty log message ***
Diffstat (limited to 'libguile/filesys.c')
-rw-r--r-- | libguile/filesys.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/filesys.c b/libguile/filesys.c index 5b23988e3..f2f35aa1d 100644 --- a/libguile/filesys.c +++ b/libguile/filesys.c @@ -1225,7 +1225,7 @@ SCM_DEFINE (scm_select, "select", 3, 2, 0, /* if there's a port with a ready buffer, don't block, just check for ready file descriptors. */ - if (!SCM_NULLP (read_ports_ready) || !SCM_NULLP (write_ports_ready)) + if (!scm_is_null (read_ports_ready) || !scm_is_null (write_ports_ready)) { timeout.tv_sec = 0; timeout.tv_usec = 0; |