diff options
| author | Hiltjo Posthuma <hiltjo@codemadness.org> | 2019-02-12 22:58:35 +0100 |
|---|---|---|
| committer | Hiltjo Posthuma <hiltjo@codemadness.org> | 2019-02-12 22:58:35 +0100 |
| commit | a9b1de384ae1ad30805e893af5cd6ea9b87c89da (patch) | |
| tree | db64e6838e99ce82c7c8c978ec2c93fde1492b90 | |
| parent | 43b0c2c3dd3e694cf674097d493ef6630efc5403 (diff) | |
improve xopenim error message
die() already prints a newline.
| -rw-r--r-- | dmenu.c | 2 |
1 files changed, 1 insertions, 1 deletions
| @@ -671,7 +671,7 @@ setup(void) | |||
| 671 | if ((xim = XOpenIM(dpy, NULL, NULL, NULL)) == NULL) { | 671 | if ((xim = XOpenIM(dpy, NULL, NULL, NULL)) == NULL) { |
| 672 | XSetLocaleModifiers("@im="); | 672 | XSetLocaleModifiers("@im="); |
| 673 | if ((xim = XOpenIM(dpy, NULL, NULL, NULL)) == NULL) | 673 | if ((xim = XOpenIM(dpy, NULL, NULL, NULL)) == NULL) |
| 674 | die("XOpenIM failed. Could not open input device.\n"); | 674 | die("XOpenIM failed: could not open input device"); |
| 675 | } | 675 | } |
| 676 | } | 676 | } |
| 677 | 677 | ||
