зеркало из https://github.com/github/ruby.git
* 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:
Родитель
a068f1cc07
Коммит
8d5ad9c1b3
|
@ -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
|
||||
|
|
Загрузка…
Ссылка в новой задаче