dccp: Fix bracing in dccp_feat_list_lookup.
From: Gerrit Renker <gerrit@erg.abdn.ac.uk> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
committed by
David S. Miller
parent
f4bdd264b4
commit
3d3e35aa78
@@ -171,11 +171,12 @@ static struct dccp_feat_entry *dccp_feat_list_lookup(struct list_head *fn_list,
|
|||||||
{
|
{
|
||||||
struct dccp_feat_entry *entry;
|
struct dccp_feat_entry *entry;
|
||||||
|
|
||||||
list_for_each_entry(entry, fn_list, node)
|
list_for_each_entry(entry, fn_list, node) {
|
||||||
if (entry->feat_num == feat_num && entry->is_local == is_local)
|
if (entry->feat_num == feat_num && entry->is_local == is_local)
|
||||||
return entry;
|
return entry;
|
||||||
else if (entry->feat_num > feat_num)
|
else if (entry->feat_num > feat_num)
|
||||||
break;
|
break;
|
||||||
|
}
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user