bgamari / nanomsg-haskell

Haskell bindings to nanomsg
MIT License
25 stars 12 forks source link

Fix representation of size_t in FFI imports #12

Open bgamari opened 2 months ago

bgamari commented 2 months ago

Previously size_t arguments were represented as int in FFI imports. This is plainly wrong; CSize should be used.

bgamari commented 2 months ago

Supercedes #10.