diff options
author | Mátyás Mustoha <mmatyas@inf.u-szeged.hu> | 2016-01-26 12:44:34 +0100 |
---|---|---|
committer | Mátyás Mustoha <mmatyas@inf.u-szeged.hu> | 2016-01-26 12:44:34 +0100 |
commit | 11bbca7ca73484aa2bdb6ebd74d0b249c038bcad (patch) | |
tree | f03a77ab1c6e6dc4baa000653786f77f490646bc /src/platform | |
parent | 0faaa590b1a041636a01ec5a25bf27381ad4edec (diff) | |
download | glutin-11bbca7ca73484aa2bdb6ebd74d0b249c038bcad.tar.gz glutin-11bbca7ca73484aa2bdb6ebd74d0b249c038bcad.zip |
Replace `i8` with `libc::c_char`
Diffstat (limited to 'src/platform')
-rw-r--r-- | src/platform/linux/api_dispatch.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/platform/linux/api_dispatch.rs b/src/platform/linux/api_dispatch.rs index 8bf0ae5..2373770 100644 --- a/src/platform/linux/api_dispatch.rs +++ b/src/platform/linux/api_dispatch.rs @@ -399,8 +399,8 @@ unsafe extern "C" fn x_error_callback(dpy: *mut x11::ffi::Display, event: *mut x if let Backend::X(ref x) = *BACKEND { let mut buff: Vec<u8> = Vec::with_capacity(1024); - (x.xlib.XGetErrorText)(dpy, (*event).error_code as i32, buff.as_mut_ptr() as *mut i8, buff.capacity() as i32); - let description = CStr::from_ptr(buff.as_mut_ptr() as *const i8).to_string_lossy(); + (x.xlib.XGetErrorText)(dpy, (*event).error_code as i32, buff.as_mut_ptr() as *mut libc::c_char, buff.capacity() as i32); + let description = CStr::from_ptr(buff.as_mut_ptr() as *const libc::c_char).to_string_lossy(); let error = XError { description: description.into_owned(), |