comparison wm/fluxbox/patch-clang.patch @ 910:a31ab8607321

wm/fluxbox: initial import, closes #1627
author David Demelier <markand@malikania.fr>
date Mon, 26 Aug 2019 20:30:00 +0200
parents
children
comparison
equal deleted inserted replaced
909:feb87679bb7b 910:a31ab8607321
1 From 22866c4d30f5b289c429c5ca88d800200db4fc4f Mon Sep 17 00:00:00 2001
2 From: John Sennesael <john@aminking.com>
3 Date: Mon, 2 Nov 2015 15:14:32 -0600
4 Subject: fixes bug #1138
5
6 ---
7 util/fluxbox-remote.cc | 2 +-
8 1 file changed, 1 insertion(+), 1 deletion(-)
9
10 diff --git a/util/fluxbox-remote.cc b/util/fluxbox-remote.cc
11 index 59852e6..504015b 100644
12 --- a/util/fluxbox-remote.cc
13 +++ b/util/fluxbox-remote.cc
14 @@ -73,7 +73,7 @@ int main(int argc, char **argv) {
15 if (strcmp(cmd, "result") == 0) {
16 XTextProperty text_prop;
17 if (XGetTextProperty(disp, root, &text_prop, atom_result) != 0
18 - && text_prop.value > 0
19 + && text_prop.value != 0
20 && text_prop.nitems > 0) {
21
22 printf("%s", text_prop.value);
23 --
24 cgit v0.11.2
25