diff options
author | Joursoir <chat@joursoir.net> | 2021-03-23 16:24:50 +0000 |
---|---|---|
committer | Joursoir <chat@joursoir.net> | 2021-03-23 16:24:50 +0000 |
commit | f14b09b10db42962a4f7f0a4d7f9cf2ea8feef4f (patch) | |
tree | 09a71df8787e0716cd4e9b87d4bbb50a6310e2a9 /src/r-x11.c | |
parent | 44f339a62ee7961758afb451a760f3b291f34c79 (diff) | |
download | lock-password-f14b09b10db42962a4f7f0a4d7f9cf2ea8feef4f.tar.gz lock-password-f14b09b10db42962a4f7f0a4d7f9cf2ea8feef4f.tar.bz2 lock-password-f14b09b10db42962a4f7f0a4d7f9cf2ea8feef4f.zip |
move cmd to 'exec-cmd.c', fix some memory leak, macros changes
Diffstat (limited to 'src/r-x11.c')
-rw-r--r-- | src/r-x11.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/r-x11.c b/src/r-x11.c index b42c852..e869d3b 100644 --- a/src/r-x11.c +++ b/src/r-x11.c @@ -76,7 +76,7 @@ int run_clipboard(const char *data) dpy = XOpenDisplay(NULL); // means use env $DISPLAY if(!dpy) - errprint(1, "Open X display failed\n"); + errprint_r(1, "Open X display failed\n"); screen = DefaultScreen(dpy); root = RootWindow(dpy, screen); |