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,10 +1315,11 @@ Process_Incoming(void *v) ...@@ -1315,10 +1315,11 @@ Process_Incoming(void *v)
&List_Polling_Device_Channels))) { &List_Polling_Device_Channels))) {
new_tail = lelt; new_tail = lelt;
dev->moved_to_tail_cnt++; dev->moved_to_tail_cnt++;
} else } else {
dev->last_on_list_cnt++; dev->last_on_list_cnt++;
} }
} }
}
if (Incoming_ThreadInfo.should_stop) if (Incoming_ThreadInfo.should_stop)
break; break;
} }
......
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