From 73e0b8de277cb40dac8c236abeab5ef7ab01529e Mon Sep 17 00:00:00 2001 From: shyouhei Date: Wed, 15 Aug 2007 19:24:58 +0000 Subject: git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8_5@12960 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ext/dl/lib/dl/win32.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ext') diff --git a/ext/dl/lib/dl/win32.rb b/ext/dl/lib/dl/win32.rb index 92f473d392..0fed47c324 100644 --- a/ext/dl/lib/dl/win32.rb +++ b/ext/dl/lib/dl/win32.rb @@ -6,7 +6,7 @@ class Win32API DLL = {} def initialize(dllname, func, import, export = "0") - prototype = (export + import.to_s).tr("VPpNnLlIi", "0SSI") + prototype = (export + import.to_s).tr("VPpNnLlIi", "0SSI").sub(/^(.)0*$/, '\1') handle = DLL[dllname] ||= DL::Handle.new(dllname) @sym = handle.sym(func, prototype) end -- cgit v1.2.3