From 71bfe4db93f61fd1d70f449b1eedc84dbca2cc17 Mon Sep 17 00:00:00 2001 From: Reginald Kennedy Date: Sat, 28 Jul 2012 04:27:56 +0800 Subject: [PATCH] Rename a variable. --- spectrwm.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/spectrwm.c b/spectrwm.c index 3b240f1..6242ac6 100644 --- a/spectrwm.c +++ b/spectrwm.c @@ -7411,10 +7411,10 @@ clientmessage(xcb_client_message_event_t *e) void check_conn(void) { - int err = xcb_connection_has_error(conn); + int errcode = xcb_connection_has_error(conn); char *s; - switch (err) { + switch (errcode) { case XCB_CONN_ERROR: s = "Socket error, pipe error or other stream error."; break; @@ -7434,8 +7434,8 @@ check_conn(void) s = "Unknown error."; } - if (err) - errx(err, "X CONNECTION ERROR: %s", s); + if (errcode) + errx(errcode, "X CONNECTION ERROR: %s", s); } #else void -- 1.7.10.4