projects
/
openvswitch
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
df2c07f
)
datapath: Remove unneeded { } around single statement.
author
Ben Pfaff
<blp@nicira.com>
Fri, 19 Aug 2011 22:43:06 +0000
(15:43 -0700)
committer
Ben Pfaff
<blp@nicira.com>
Mon, 22 Aug 2011 16:55:49 +0000
(09:55 -0700)
I noticed this looking around at other code.
Signed-off-by: Ben Pfaff <blp@nicira.com>
Acked-by: Jesse Gross <jesse@nicira.com>
datapath/datapath.c
patch
|
blob
|
history
diff --git
a/datapath/datapath.c
b/datapath/datapath.c
index 157e106944e1050bb7d38d85766a2cbe5d01dd27..0b6e2e5355d69aef1763acbd17da763210ffdc60 100644
(file)
--- a/
datapath/datapath.c
+++ b/
datapath/datapath.c
@@
-2007,9
+2007,8
@@
static void dp_unregister_genl(int n_families)
{
int i;
- for (i = 0; i < n_families; i++)
{
+ for (i = 0; i < n_families; i++)
genl_unregister_family(dp_genl_families[i].family);
- }
}
static int dp_register_genl(void)