From: Simon Horman Date: Thu, 5 Sep 2013 06:32:32 +0000 (+0900) Subject: ofproto-dpif: Correct indentation of rule_dpif_{release, credit_stats} X-Git-Tag: v2.1.0~672 X-Git-Url: http://git.cascardo.eti.br/?a=commitdiff_plain;h=cd1acaab0a125b4578dbcc686ea9f4cc5de5fb1a;p=cascardo%2Fovs.git ofproto-dpif: Correct indentation of rule_dpif_{release, credit_stats} Correct indentation of rule_dpif_{release,credit_stats} prototypes. This corrects a cosmetic problem introduced by 70742c7f54e7f147 ("ofproto-dpif: Hide struct rule_dpif internally."). Cc: Ethan Jackson Signed-off-by: Simon Horman Signed-off-by: Ben Pfaff --- diff --git a/ofproto/ofproto-dpif.h b/ofproto/ofproto-dpif.h index eb724d5ee..7efc8d736 100644 --- a/ofproto/ofproto-dpif.h +++ b/ofproto/ofproto-dpif.h @@ -69,10 +69,10 @@ bool rule_dpif_lookup_in_table(struct ofproto_dpif *, const struct flow *, struct rule_dpif **rule) OVS_TRY_RDLOCK(true, *rule); - void rule_dpif_release(struct rule_dpif *rule) OVS_RELEASES(rule); +void rule_dpif_release(struct rule_dpif *rule) OVS_RELEASES(rule); - void rule_dpif_credit_stats(struct rule_dpif *rule , - const struct dpif_flow_stats *); +void rule_dpif_credit_stats(struct rule_dpif *rule , + const struct dpif_flow_stats *); bool rule_dpif_fail_open(const struct rule_dpif *rule);