diff options
author | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-03-03 07:52:42 +0000 |
---|---|---|
committer | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-03-03 07:52:42 +0000 |
commit | dba06de110c9ba74a58253f5be8a9293980d7bff (patch) | |
tree | 10d8d604f19740dfca4adbc83dca2164cc728296 /ext/dl/lib/dl | |
parent | 2b3a2048328e23810283f83d23fa20a63242c0fe (diff) |
* ext/dl/win32/lib/win32/resolv.rb: get rid of warning.
* ext/dl/lib/dl/func.rb: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@22727 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/dl/lib/dl')
-rw-r--r-- | ext/dl/lib/dl/func.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/dl/lib/dl/func.rb b/ext/dl/lib/dl/func.rb index 97f24a68d0..1ec34b7cf3 100644 --- a/ext/dl/lib/dl/func.rb +++ b/ext/dl/lib/dl/func.rb @@ -15,6 +15,8 @@ module DL if( @cfunc.ctype < 0 ) @cfunc.ctype = @cfunc.ctype.abs @unsigned = true + else + @unsigned = false end if( proc ) bind(&proc) |