improve xopenim error message

die() already prints a newline.
This commit is contained in:
Hiltjo Posthuma 2019-02-12 22:58:35 +01:00
parent 43b0c2c3dd
commit a9b1de384a
1 changed files with 1 additions and 1 deletions

View File

@ -671,7 +671,7 @@ setup(void)
if ((xim = XOpenIM(dpy, NULL, NULL, NULL)) == NULL) {
XSetLocaleModifiers("@im=");
if ((xim = XOpenIM(dpy, NULL, NULL, NULL)) == NULL)
die("XOpenIM failed. Could not open input device.\n");
die("XOpenIM failed: could not open input device");
}
}