AltF02 / x11-rs

Rust bindings for X11 libraries
https://docs.rs/x11
MIT License
204 stars 66 forks source link

Implement conversion traits for c_schar and c_uchar #41

Closed mbrubeck closed 8 years ago

mbrubeck commented 8 years ago

This fixes a build error on platfoms like ARM where c_char and c_uchar are the same type. (The C standard doesn't specify whether char is the same as signed char or unsigned char.)

ghost commented 8 years ago

Thanks!