* lib/fileutils (fu_stream_blksize): wrong logial condition.

(and -> or).


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3530 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
eban 2003-02-23 09:00:51 +00:00
Родитель a068f1cc07
Коммит 8d5ad9c1b3
2 изменённых файлов: 6 добавлений и 1 удалений

Просмотреть файл

@ -1,3 +1,8 @@
Sun Feb 23 17:57:06 2003 WATANABE Hirofumi <eban@ruby-lang.org>
* lib/fileutils (fu_stream_blksize): wrong logial condition.
(and -> or).
Sat Feb 22 02:45:20 2003 Yukihiro Matsumoto <matz@ruby-lang.org>
* eval.c (rb_thread_create): may called from place higher than

Просмотреть файл

@ -725,7 +725,7 @@ module FileUtils
streams.each do |s|
next unless s.respond_to?(:stat)
size = s.stat.blksize
return size unless size.nil? and size.zero?
return size unless size.nil? or size.zero?
end
1024
end