]> git.sur5r.net Git - i3/i3/commitdiff
Eliminate once-used check_error utility function
authorMichael Stapelberg <michael@stapelberg.de>
Wed, 14 Sep 2016 07:19:25 +0000 (09:19 +0200)
committerMichael Stapelberg <michael@stapelberg.de>
Wed, 14 Sep 2016 07:19:25 +0000 (09:19 +0200)
include/util.h
src/main.c
src/util.c

index 28655178854b02b5e03374d959873deccd2eb0fe..9915c1a87a551a42dde79bf0e60505f5c7a8635e 100644 (file)
@@ -98,14 +98,6 @@ bool update_if_necessary(uint32_t *destination, const uint32_t new_value);
  */
 void exec_i3_utility(char *name, char *argv[]);
 
-/**
- * Checks a generic cookie for errors and quits with the given message if
- * there was an error.
- *
- */
-void check_error(xcb_connection_t *conn, xcb_void_cookie_t cookie,
-                 char *err_message);
-
 /**
  * Checks if the given path exists by calling stat().
  *
index 8bbd23baf6a86ff5fa35853e684012f14104f00c..367ebac16688ede9b8132138eed3dc389efb9491 100644 (file)
@@ -538,7 +538,11 @@ int main(int argc, char *argv[]) {
 
     xcb_void_cookie_t cookie;
     cookie = xcb_change_window_attributes_checked(conn, root, XCB_CW_EVENT_MASK, (uint32_t[]){ROOT_EVENT_MASK});
-    check_error(conn, cookie, "Another window manager seems to be running");
+    xcb_generic_error_t *error = xcb_request_check(conn, cookie);
+    if (error != NULL) {
+        ELOG("Another window manager seems to be running (X error %d)\n", error->error_code);
+        return 1;
+    }
 
     xcb_get_geometry_reply_t *greply = xcb_get_geometry_reply(conn, gcookie, NULL);
     if (greply == NULL) {
index 53f78d72d64cce627256e183eff1d86965306051..d19f8c5ee07b0c216e1c4f980a47e4cdc80e667d 100644 (file)
@@ -145,20 +145,6 @@ void exec_i3_utility(char *name, char *argv[]) {
     _exit(2);
 }
 
-/*
- * Checks a generic cookie for errors and quits with the given message if there
- * was an error.
- *
- */
-void check_error(xcb_connection_t *conn, xcb_void_cookie_t cookie, char *err_message) {
-    xcb_generic_error_t *error = xcb_request_check(conn, cookie);
-    if (error != NULL) {
-        fprintf(stderr, "ERROR: %s (X error %d)\n", err_message, error->error_code);
-        xcb_disconnect(conn);
-        exit(-1);
-    }
-}
-
 /*
  * Checks if the given path exists by calling stat().
  *