aboutsummarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorHiltjo Posthuma2018-03-09 15:36:25 +0100
committerHiltjo Posthuma2018-03-09 15:36:25 +0100
commitebdd6ebbf7e543e2008dbc2cab20a6a4404079b0 (patch)
treeacb61fdd1e5e4d9d66937b2d26e930204069c670
parent4522c8abc40c77f20077daff3eeb7be842e55b44 (diff)
downloadaur-ebdd6ebbf7e543e2008dbc2cab20a6a4404079b0.tar.gz
xhints: no need to initialize sizeh
-rw-r--r--x.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/x.c b/x.c
index f00568791f70..537322bf872e 100644
--- a/x.c
+++ b/x.c
@@ -780,7 +780,7 @@ xhints(void)
XClassHint class = {opt_name ? opt_name : termname,
opt_class ? opt_class : termname};
XWMHints wm = {.flags = InputHint, .input = 1};
- XSizeHints *sizeh = NULL;
+ XSizeHints *sizeh;
sizeh = XAllocSizeHints();