summaryrefslogtreecommitdiffstats
path: root/io.c
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-09-12 15:23:54 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-09-12 15:23:54 +0000
commit71f170a012e6145f602555534f9b7f5b3a694038 (patch)
treee769f3cbc6d0d5e01042a2088ba78a09d9c6abcc /io.c
parent5bade2cb14bc0e19960b648858710b4cffe1d5c5 (diff)
downloadruby-71f170a012e6145f602555534f9b7f5b3a694038.tar.gz
ruby-71f170a012e6145f602555534f9b7f5b3a694038.tar.xz
ruby-71f170a012e6145f602555534f9b7f5b3a694038.zip
* test/dbm/test_dbm.rb: remove locking test, which may not be
supported on some platforms. [ruby-dev:27030] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@9134 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'io.c')
-rw-r--r--io.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/io.c b/io.c
index 549c1e43d..02010d867 100644
--- a/io.c
+++ b/io.c
@@ -130,7 +130,7 @@ static VALUE lineno = INT2FIX(0);
#elif defined(__BEOS__)
# define STDIO_READ_DATA_PENDING(fp) (fp->_state._eof == 0)
#elif defined(__VMS)
-# define STDIO_READ_DATA_PENDING(fp) (((unsigned int)(*(fp))->_cnt) > 0)
+# define STDIO_READ_DATA_PENDING(fp) (((unsigned int)(*(fp))->_cnt) > 0)
#else
# define STDIO_READ_DATA_PENDING(fp) (!feof(fp))
#endif