pinentry-dmenu

a pinentry program based on dmenu
git clone anongit@rnpnr.xyz:pinentry-dmenu.git
Log | Files | Refs | Feed | README | LICENSE

Commit: e2d42b91625346c6b73570e9384a9a32be7ae9aa
Parent: 700681675c37d417eeeeabe93758f40d579556e3
Author: Hiltjo Posthuma
Date:   Tue, 12 Feb 2019 22:58:35 +0100

improve xopenim error message

die() already prints a newline.

Diffstat:
Mpinentry-dmenu.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pinentry-dmenu.c b/pinentry-dmenu.c @@ -360,7 +360,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"); } }