diff mbox

[ovs-dev,24/31] fixup: Style.

Message ID 20170612222856.14108-25-blp@ovn.org
State Superseded
Headers show

Commit Message

Ben Pfaff June 12, 2017, 10:28 p.m. UTC
This keeps lines from exceeding 79 columns.

Signed-off-by: Ben Pfaff <blp@ovn.org>
---
 lib/ofp-print.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
diff mbox

Patch

diff --git a/lib/ofp-print.c b/lib/ofp-print.c
index 5b37ed8f46ba..6b994cd17c94 100644
--- a/lib/ofp-print.c
+++ b/lib/ofp-print.c
@@ -218,9 +218,9 @@  ofp_print_packet_in(struct ds *string, const struct ofp_header *oh,
     }
 
     if (verbosity > 0) {
-        char *packet = ofp_packet_to_string(public->packet,
-                                            public->packet_len,
-                                            public->flow_metadata.flow.packet_type);
+        char *packet = ofp_packet_to_string(
+            public->packet, public->packet_len,
+            public->flow_metadata.flow.packet_type);
         ds_put_cstr(string, packet);
         free(packet);
     }