Commit f0b9a0f9 authored by Benjamin Romer's avatar Benjamin Romer Committed by Greg Kroah-Hartman

staging: unisys: add missing brackets in Process_Incoming()

Fix the brackets in the else clause in Process_Incoming().
Signed-off-by: default avatarBryan Thompson <bryan.thompson@unisys.com>
Signed-off-by: default avatarBenjamin Romer <benjamin.romer@unisys.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 2dcca2f7
......@@ -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)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment