1
0
mirror of https://github.com/gryf/wmaker.git synced 2026-02-13 20:35:54 +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:
David Maciejak
2023-02-08 07:51:34 +08:00
committed by Carlos R. Mafra
parent ddacfa5d63
commit 150816c687

View File

@@ -750,7 +750,7 @@ int main(int argc, char **argv)
dpy = XOpenDisplay(NULL);
if (!dpy) {
fprintf(stderr, "Error: can't open display");
fprintf(stderr, "Error: can't open display\n");
linked_list_free(&list);
return EXIT_FAILURE;
}