summaryrefslogtreecommitdiff
path: root/ext/dbm
diff options
context:
space:
mode:
Diffstat (limited to 'ext/dbm')
-rw-r--r--ext/dbm/testdbm.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/dbm/testdbm.rb b/ext/dbm/testdbm.rb
index 7ccb3d7b23..4942ffb64a 100644
--- a/ext/dbm/testdbm.rb
+++ b/ext/dbm/testdbm.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