Skip to content

Commit

Permalink
ofproto-dpif: Whitespace fixes
Browse files Browse the repository at this point in the history
Acked-by: Ben Pfaff <[email protected]>
Signed-off-by: YAMAMOTO Takashi <[email protected]>
  • Loading branch information
yamt committed May 12, 2014
1 parent 054e5aa commit dbb7c28
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions ofproto/ofproto-dpif.c
Original file line number Diff line number Diff line change
Expand Up @@ -1241,13 +1241,13 @@ add_internal_flows(struct ofproto_dpif *ofproto)

ofpbuf_clear(&ofpacts);
error = add_internal_miss_flow(ofproto, id++, &ofpacts,
&ofproto->no_packet_in_rule);
&ofproto->no_packet_in_rule);
if (error) {
return error;
}

error = add_internal_miss_flow(ofproto, id++, &ofpacts,
&ofproto->drop_frags_rule);
&ofproto->drop_frags_rule);
if (error) {
return error;
}
Expand All @@ -1264,7 +1264,7 @@ add_internal_flows(struct ofproto_dpif *ofproto)
match_init_catchall(&match);
match_set_recirc_id(&match, 0);

error = ofproto_dpif_add_internal_flow(ofproto, &match, 2, &ofpacts,
error = ofproto_dpif_add_internal_flow(ofproto, &match, 2, &ofpacts,
&unused_rulep);
if (error) {
return error;
Expand All @@ -1277,7 +1277,7 @@ add_internal_flows(struct ofproto_dpif *ofproto)
*/
ofpbuf_clear(&ofpacts);
match_init_catchall(&match);
error = ofproto_dpif_add_internal_flow(ofproto, &match, 1, &ofpacts,
error = ofproto_dpif_add_internal_flow(ofproto, &match, 1, &ofpacts,
&unused_rulep);

return error;
Expand Down

0 comments on commit dbb7c28

Please sign in to comment.