From 9246a73c21dab6031e8036b3ebaa3b943d2119d1 Mon Sep 17 00:00:00 2001 From: matz Date: Thu, 16 Oct 2003 17:47:19 +0000 Subject: consistent parentheses in assignment RHS. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4790 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ext/sdbm/testsdbm.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ext/sdbm') diff --git a/ext/sdbm/testsdbm.rb b/ext/sdbm/testsdbm.rb index 3577d3606..5a185fd5c 100644 --- a/ext/sdbm/testsdbm.rb +++ b/ext/sdbm/testsdbm.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 -- cgit