summaryrefslogtreecommitdiffstats
path: root/ext/gdbm
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-10-16 17:47:19 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-10-16 17:47:19 +0000
commit9246a73c21dab6031e8036b3ebaa3b943d2119d1 (patch)
treea700e3fe92165180b04451746f9c4fda4f038289 /ext/gdbm
parentd9a34753f78b8db5115b10bb1df137a16c4c90cf (diff)
downloadruby-9246a73c21dab6031e8036b3ebaa3b943d2119d1.tar.gz
ruby-9246a73c21dab6031e8036b3ebaa3b943d2119d1.tar.xz
ruby-9246a73c21dab6031e8036b3ebaa3b943d2119d1.zip
consistent parentheses in assignment RHS.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4790 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/gdbm')
-rw-r--r--ext/gdbm/testgdbm.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/gdbm/testgdbm.rb b/ext/gdbm/testgdbm.rb
index 529b0010a..a43549864 100644
--- a/ext/gdbm/testgdbm.rb
+++ b/ext/gdbm/testgdbm.rb
@@ -14,7 +14,7 @@ def uname_s
case Config::CONFIG['host_os']
when 'cygwin'
require 'Win32API'
- uname = Win32API.new 'cygwin1', 'uname', 'P', 'I'
+ uname = Win32API.new('cygwin1', 'uname', 'P', 'I')
utsname = ' ' * 100
raise 'cannot get system name' if uname.call(utsname) == -1