Remove info() and die()

This commit is contained in:
Johan Malm 2021-07-22 21:30:17 +01:00
parent 22f5073ebd
commit 20fd8f59a7
11 changed files with 26 additions and 51 deletions

View file

@ -59,7 +59,8 @@ main(int argc, char *argv[])
rcxml_read(config_file);
if (!getenv("XDG_RUNTIME_DIR")) {
die("XDG_RUNTIME_DIR is unset");
wlr_log(WLR_ERROR, "XDG_RUNTIME_DIR is unset");
exit(EXIT_FAILURE);
}
struct server server = { 0 };