ofproto-dpif-xlate: Fix a whitespace error.
authorYAMAMOTO Takashi <yamamoto@valinux.co.jp>
Wed, 15 Jan 2014 03:41:22 +0000 (12:41 +0900)
committerBen Pfaff <blp@nicira.com>
Wed, 15 Jan 2014 17:58:33 +0000 (09:58 -0800)
No functional changes.

Signed-off-by: YAMAMOTO Takashi <yamamoto@valinux.co.jp>
Signed-off-by: Ben Pfaff <blp@nicira.com>
ofproto/ofproto-dpif-xlate.c

index e73b7eb..0eadf46 100644 (file)
@@ -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;
 }