Merge pull request #247 from akiss77/pr-xerrorevent

Reorder the fields of `XErrorEvent` to match the struct layout found in recent Xlib.h
This commit is contained in:
tomaka 2015-02-02 08:51:21 +01:00
commit 7ced7cb674

View file

@ -1362,11 +1362,11 @@ pub struct XF86VidModeModeInfo {
pub struct XErrorEvent {
pub type_: libc::c_int,
pub display: *mut Display,
pub resourceid: XID,
pub serial: libc::c_ulong,
pub error_code: libc::c_char,
pub request_code: libc::c_char,
pub minor_code: libc::c_char,
pub resourceid: XID,
}
#[cfg(feature = "headless")]