staging: unisys: add missing brackets in Process_Incoming()

Fix the brackets in the else clause in Process_Incoming().

Signed-off-by: Bryan Thompson <bryan.thompson@unisys.com>
Signed-off-by: Benjamin Romer <benjamin.romer@unisys.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Benjamin Romer
2014-12-05 17:08:48 -05:00
committed by Greg Kroah-Hartman
parent 2dcca2f7d6
commit f0b9a0f9e0

View File

@@ -1315,8 +1315,9 @@ Process_Incoming(void *v)
&List_Polling_Device_Channels))) {
new_tail = lelt;
dev->moved_to_tail_cnt++;
} else
} else {
dev->last_on_list_cnt++;
}
}
}
if (Incoming_ThreadInfo.should_stop)