summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYAMAMOTO Takashi <yamamoto@valinux.co.jp>2014-01-15 12:41:22 +0900
committerBen Pfaff <blp@nicira.com>2014-01-15 09:58:33 -0800
commit47ae2f6c8b2b055375ec56bc2094b58b81655225 (patch)
tree366c6a2a35f6ca473168494f9382658b78d43263
parent7156f7b9fdba428614e48e01e1566e94863c832a (diff)
downloadopenvswitch-47ae2f6c8b2b055375ec56bc2094b58b81655225.tar.gz
ofproto-dpif-xlate: Fix a whitespace error.
No functional changes. Signed-off-by: YAMAMOTO Takashi <yamamoto@valinux.co.jp> Signed-off-by: Ben Pfaff <blp@nicira.com>
-rw-r--r--ofproto/ofproto-dpif-xlate.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/ofproto/ofproto-dpif-xlate.c b/ofproto/ofproto-dpif-xlate.c
index e73b7eb34..0eadf46dd 100644
--- a/ofproto/ofproto-dpif-xlate.c
+++ b/ofproto/ofproto-dpif-xlate.c
@@ -3270,9 +3270,9 @@ xlate_send_packet(const struct ofport_dpif *ofport, struct ofpbuf *packet)
}
output.port = xport->ofp_port;
output.max_len = 0;
- error = ofproto_dpif_execute_actions(xport->xbridge->ofproto, &flow, NULL,
- &output.ofpact, sizeof output,
- packet);
+ error = ofproto_dpif_execute_actions(xport->xbridge->ofproto, &flow, NULL,
+ &output.ofpact, sizeof output,
+ packet);
ovs_rwlock_unlock(&xlate_rwlock);
return error;
}