tormol / uds

A unix domain sockets Rust library
Apache License 2.0
21 stars 9 forks source link

Change `as u32` cast to `as c_uint` #15

Closed Manishearth closed 1 year ago

Manishearth commented 1 year ago

We've bounds checked for c_uint, it's possible there will be a platform where this is not u32. Fortunately CSMG_SPACE also just wants a c_uint.

tormol commented 1 year ago

Ok, thanks.