datapath: Remove unneeded { } around single statement.
authorBen Pfaff <blp@nicira.com>
Fri, 19 Aug 2011 22:43:06 +0000 (15:43 -0700)
committerBen 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

index 157e106..0b6e2e5 100644 (file)
@@ -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)