Update periodic testing scripts

This commit is contained in:
o9000
2017-11-05 19:51:09 +01:00
parent 41190204b3
commit 1ff3404e56
5 changed files with 6 additions and 6 deletions

View File

@@ -75,7 +75,7 @@ void handle_cli_arguments(int argc, char **argv)
}
if (error) {
print_usage();
exit(1);
exit(EXIT_FAILURE);
}
}
}
@@ -184,7 +184,7 @@ void init_X11_pre_config()
server.display = XOpenDisplay(NULL);
if (!server.display) {
fprintf(stderr, "tint2: could not open display!\n");
exit(1);
exit(EXIT_FAILURE);
}
server.x11_fd = ConnectionNumber(server.display);
XSetErrorHandler((XErrorHandler)server_catch_error);