informationsea / xlsxwriter-rs

Excel file writer for Rust
https://crates.io/crates/xlsxwriter
Apache License 2.0
265 stars 44 forks source link

Use std::os::raw::c_char instead of i8 #19

Closed ghost closed 3 years ago

ghost commented 3 years ago

xlsxwriter miscompiles because of a type mismatch between *(const|mut) (i8|u8). The actual type(-alias) for c_char is either i8 or u8. This patch uses the type alias instead.

informationsea commented 3 years ago

Thank you