mirror of
https://github.com/gryf/wmaker.git
synced 2026-02-15 05:25:53 +01:00
Fix missing linefeed on the error message
Just to display the error message properly in case there is no display.
This commit is contained in:
committed by
Carlos R. Mafra
parent
ddacfa5d63
commit
150816c687
@@ -750,7 +750,7 @@ int main(int argc, char **argv)
|
|||||||
|
|
||||||
dpy = XOpenDisplay(NULL);
|
dpy = XOpenDisplay(NULL);
|
||||||
if (!dpy) {
|
if (!dpy) {
|
||||||
fprintf(stderr, "Error: can't open display");
|
fprintf(stderr, "Error: can't open display\n");
|
||||||
linked_list_free(&list);
|
linked_list_free(&list);
|
||||||
return EXIT_FAILURE;
|
return EXIT_FAILURE;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user