diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2016-04-10 11:54:17 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2016-04-10 11:54:17 +0000 |
commit | 21992b6cbd83ba8a213f0d7a08bdf9c89e785113 (patch) | |
tree | d07bed53a2910409354d9321173f2b23557adf55 /ext/win32 | |
parent | 3cd3c9d74c8e30fc10726735165e2b8dd50bfaec (diff) | |
download | bundler-21992b6cbd83ba8a213f0d7a08bdf9c89e785113.tar.gz |
registry.rb: fix API names
* ext/win32/lib/win32/registry.rb (DeleteValue, DeleteKey): fix
API names. [ruby-core:74863] [Bug #12264]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@54529 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/win32')
-rw-r--r-- | ext/win32/lib/win32/registry.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/win32/lib/win32/registry.rb b/ext/win32/lib/win32/registry.rb index 1f8f2d0112..f3655b78d3 100644 --- a/ext/win32/lib/win32/registry.rb +++ b/ext/win32/lib/win32/registry.rb @@ -333,11 +333,11 @@ For detail, see the MSDN[http://msdn.microsoft.com/library/en-us/sysinfo/base/pr end def DeleteValue(hkey, name) - check RegDeleteValue.call(hkey, make_wstr(name)) + check RegDeleteValueW.call(hkey, make_wstr(name)) end def DeleteKey(hkey, name) - check RegDeleteKey.call(hkey, make_wstr(name)) + check RegDeleteKeyW.call(hkey, make_wstr(name)) end def FlushKey(hkey) |