Skip to content

Commit

Permalink
Merge pull request #1582 from kou/fix-ruby-bindings-runtime-error-on-…
Browse files Browse the repository at this point in the history
…windows

Problem: Ruby bindings don't work on Windows
  • Loading branch information
bluca authored Dec 30, 2016
2 parents 4e18f29 + 0dbe55e commit 1e41bf6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bindings/ruby/lib/czmq/ffi.rb
Original file line number Diff line number Diff line change
Expand Up @@ -1062,7 +1062,7 @@ def self.zsock_leave(*)
attach_function :zsock_tcp_accept_filter, [:pointer], :pointer, **opts
attach_function :zsock_set_tcp_accept_filter, [:pointer, :string], :void, **opts
attach_function :zsock_rcvmore, [:pointer], :int, **opts
attach_function :zsock_fd, [:pointer], (::FFI::Platform.unix? ? :int : :uint64_t), **opts
attach_function :zsock_fd, [:pointer], (::FFI::Platform.unix? ? :int : :uint64), **opts
attach_function :zsock_events, [:pointer], :int, **opts
attach_function :zsock_last_endpoint, [:pointer], :pointer, **opts
attach_function :zsock_set_router_raw, [:pointer, :int], :void, **opts
Expand Down

0 comments on commit 1e41bf6

Please sign in to comment.