Closed ghost closed 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.
*(const|mut) (i8|u8)
c_char
i8
u8
Thank you
xlsxwriter miscompiles because of a type mismatch between
*(const|mut) (i8|u8)
. The actual type(-alias) forc_char
is eitheri8
oru8
. This patch uses the type alias instead.