pola-rs / pyo3-polars

Plugins/extension for Polars
MIT License
242 stars 40 forks source link

fix: Fix libc::write argument type. #103

Closed jetuk closed 5 days ago

jetuk commented 1 week ago

The argument type for libc::write is platform dependent. The fix converts to the platform specific type using TryInto. This fixes Windows builds.

Fixes #101.

ritchie46 commented 5 days ago

Thanks!