Fix a warning

This commit is contained in:
Hummer12007 2016-07-18 00:57:49 +03:00 committed by GitHub
parent 2530f952c9
commit 06f46955c0
1 changed files with 1 additions and 1 deletions

View File

@ -99,7 +99,7 @@ static void mouse_scroll_notify(struct window *window, enum scroll_direction dir
if (!swaybar.config->wrap_scroll) {
// Find output this window lives on
int i;
struct output *output;
struct output *output = NULL;
for (i = 0; i < swaybar.outputs->length; ++i) {
output = swaybar.outputs->items[i];
if (output->window == window) {