Skip to content

Commit cd19024

Browse files
authored
Merge pull request #1466 from ndren/patch-1
output: die instead of dumping core with no X11 output
2 parents f6ba641 + cb5e0cc commit cd19024

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/output.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ const struct output* get_x11_output(void) {
6767
if (output->init()) {
6868
return output;
6969
} else {
70-
LOG_E("Couldn't initialize X11 output. Aborting...");
70+
DIE("Couldn't initialize X11 output. Aborting...");
7171
}
7272
}
7373
#endif

0 commit comments

Comments
 (0)