projects
/
openvswitch
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2afd8e4
)
Style fix: f(x) is better than f((x))
author
Ben Pfaff
<blp@nicira.com>
Fri, 12 Dec 2008 00:41:25 +0000
(16:41 -0800)
committer
Ben Pfaff
<blp@nicira.com>
Tue, 16 Dec 2008 23:59:54 +0000
(15:59 -0800)
datapath/datapath.c
patch
|
blob
|
history
diff --git
a/datapath/datapath.c
b/datapath/datapath.c
index 570cdcfbc24fb24b7f38b6a6bdaaf2dbc0db9601..6b7f6453be70aa70ce395324c5a2fadd7720c686 100644
(file)
--- a/
datapath/datapath.c
+++ b/
datapath/datapath.c
@@
-1114,7
+1114,7
@@
static int dp_genl_del(struct sk_buff *skb, struct genl_info *info)
if (!info->attrs[DP_GENL_A_DP_IDX])
return -EINVAL;
- dp = dp_get(nla_get_u32(
(info->attrs[DP_GENL_A_DP_IDX])
));
+ dp = dp_get(nla_get_u32(
info->attrs[DP_GENL_A_DP_IDX]
));
if (!dp)
err = -ENOENT;
else {