From: Ben Pfaff Date: Fri, 19 Aug 2011 22:43:06 +0000 (-0700) Subject: datapath: Remove unneeded { } around single statement. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b867ca7598a796069928aa9d78b9bff06d71ac9e;p=openvswitch datapath: Remove unneeded { } around single statement. I noticed this looking around at other code. Signed-off-by: Ben Pfaff Acked-by: Jesse Gross --- diff --git a/datapath/datapath.c b/datapath/datapath.c index 157e1069..0b6e2e53 100644 --- 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)