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 18:14:18 +0000 (10:14 -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 e6bf34f..7e332bd 100644 (file)
@@ -3258,9 +3258,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;
 }