From b867ca7598a796069928aa9d78b9bff06d71ac9e Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Fri, 19 Aug 2011 15:43:06 -0700 Subject: [PATCH] datapath: Remove unneeded { } around single statement. I noticed this looking around at other code. Signed-off-by: Ben Pfaff Acked-by: Jesse Gross --- datapath/datapath.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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) -- 2.30.2