aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHiltjo Posthuma <hiltjo@codemadness.org>2018-03-09 15:36:25 +0100
committerHiltjo Posthuma <hiltjo@codemadness.org>2018-03-09 15:36:25 +0100
commitb81888ee7d95d9ecb7b1749630b09a96065a8fea (patch)
treef1b795233d38ea2b1a8ac962cd3f518476662763
parent8b8255ac0e188445f6904ff16272e9e93093cbde (diff)
downloadst-patched-b81888ee7d95d9ecb7b1749630b09a96065a8fea.tar.bz2
st-patched-b81888ee7d95d9ecb7b1749630b09a96065a8fea.tar.xz
st-patched-b81888ee7d95d9ecb7b1749630b09a96065a8fea.zip
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 f005687..537322b 100644
--- a/x.c
+++ b/x.c
@@ -780,7 +780,7 @@ xhints(void)
780 XClassHint class = {opt_name ? opt_name : termname, 780 XClassHint class = {opt_name ? opt_name : termname,
781 opt_class ? opt_class : termname}; 781 opt_class ? opt_class : termname};
782 XWMHints wm = {.flags = InputHint, .input = 1}; 782 XWMHints wm = {.flags = InputHint, .input = 1};
783 XSizeHints *sizeh = NULL; 783 XSizeHints *sizeh;
784 784
785 sizeh = XAllocSizeHints(); 785 sizeh = XAllocSizeHints();
786 786