aboutsummaryrefslogtreecommitdiff
path: root/util
diff options
context:
space:
mode:
authorMathias Gumz <akira@fluxbox.org>2015-01-03 17:43:44 (GMT)
committerMathias Gumz <akira@fluxbox.org>2015-01-03 17:43:44 (GMT)
commitbd519dd95200aa432fb3b431a4244ffb25c5de93 (patch)
tree3786141d1d990286446639850d46f9cb180408ee /util
parent11974fa40a69a2fb25598330afddbac4901592fc (diff)
downloadfluxbox-bd519dd95200aa432fb3b431a4244ffb25c5de93.zip
fluxbox-bd519dd95200aa432fb3b431a4244ffb25c5de93.tar.bz2
Remove various unused variables
Clang and Gcc-4.9 complaint about some unused variables here and there. And who are we to not make a compiler happy :)
Diffstat (limited to 'util')
-rw-r--r--util/fluxbox-remote.cc2
1 files changed, 0 insertions, 2 deletions
diff --git a/util/fluxbox-remote.cc b/util/fluxbox-remote.cc
index 0fcd118..59852e6 100644
--- a/util/fluxbox-remote.cc
+++ b/util/fluxbox-remote.cc
@@ -43,7 +43,6 @@ int main(int argc, char **argv) {
43 int rc; 43 int rc;
44 Display* disp; 44 Display* disp;
45 Window root; 45 Window root;
46 Atom atom_utf8;
47 Atom atom_fbcmd; 46 Atom atom_fbcmd;
48 Atom atom_result; 47 Atom atom_result;
49 xerror_cb_t error_cb; 48 xerror_cb_t error_cb;
@@ -62,7 +61,6 @@ int main(int argc, char **argv) {
62 } 61 }
63 62
64 cmd = argv[1]; 63 cmd = argv[1];
65 atom_utf8 = XInternAtom(disp, "UTF8_STRING", False);
66 atom_fbcmd = XInternAtom(disp, "_FLUXBOX_ACTION", False); 64 atom_fbcmd = XInternAtom(disp, "_FLUXBOX_ACTION", False);
67 atom_result = XInternAtom(disp, "_FLUXBOX_ACTION_RESULT", False); 65 atom_result = XInternAtom(disp, "_FLUXBOX_ACTION_RESULT", False);
68 root = DefaultRootWindow(disp); 66 root = DefaultRootWindow(disp);