Eliminate once-used check_error utility function

This commit is contained in:
Michael Stapelberg
2016-09-14 09:19:25 +02:00
parent d48c9b1e33
commit 5594139676
3 changed files with 5 additions and 23 deletions

View 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().
*