remove unneeded initialization to zero

This removes a warning when compiling with -Wall (tested with clang 11.1.0).
This commit is contained in:
Hiltjo Posthuma 2021-06-13 22:35:16 +02:00
parent 34530800bb
commit 2306b8eb40
1 changed files with 2 additions and 2 deletions

View File

@ -136,8 +136,8 @@ Bool sigtermd = False;
#endif #endif
#include LAYOUT #include LAYOUT
static Key keys[KEYS] = { NULL }; static Key keys[KEYS];
static Key* layers[LAYERS]; static Key *layers[LAYERS];
void void
motionnotify(XEvent *e) motionnotify(XEvent *e)