diff options
author | Hiltjo Posthuma <hiltjo@codemadness.org> | 2018-03-09 15:36:25 +0100 |
---|---|---|
committer | Hiltjo Posthuma <hiltjo@codemadness.org> | 2018-03-09 15:36:25 +0100 |
commit | b81888ee7d95d9ecb7b1749630b09a96065a8fea (patch) | |
tree | f1b795233d38ea2b1a8ac962cd3f518476662763 | |
parent | 8b8255ac0e188445f6904ff16272e9e93093cbde (diff) |
xhints: no need to initialize sizeh
-rw-r--r-- | x.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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(); |