From: Reginald Kennedy Date: Fri, 27 Jul 2012 15:01:17 +0000 (+0800) Subject: Fix check_conn to work with older libxcb versions. X-Git-Tag: SPECTRWM_1_2_0~13 X-Git-Url: https://code.delx.au/spectrwm/commitdiff_plain/a7ab2b333812ff5619c9b95e8a6386a3ef99866a Fix check_conn to work with older libxcb versions. --- diff --git a/spectrwm.c b/spectrwm.c index 4c5974b..023613b 100644 --- a/spectrwm.c +++ b/spectrwm.c @@ -7407,6 +7407,7 @@ clientmessage(xcb_client_message_event_t *e) xcb_flush(conn); } +#ifdef XCB_CONN_ERROR void check_conn(void) { @@ -7436,6 +7437,14 @@ check_conn(void) if (err) errx(err, "X CONNECTION ERROR: %s", s); } +#else +void +check_conn(void) +{ + if (conn->has_error) + errx(err, "X CONNECTION ERROR"); +} +#endif int enable_wm(void)