diff mbox

[ovs-dev,trivial,1/3] netdev-dummy: Fix minor style variation.

Message ID 20170809203807.16943-1-joe@ovn.org
State Accepted
Headers show

Commit Message

Joe Stringer Aug. 9, 2017, 8:38 p.m. UTC
Signed-off-by: Joe Stringer <joe@ovn.org>
---
 lib/netdev-dummy.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Ben Pfaff Aug. 9, 2017, 8:46 p.m. UTC | #1
On Wed, Aug 09, 2017 at 01:38:05PM -0700, Joe Stringer wrote:
> Signed-off-by: Joe Stringer <joe@ovn.org>

For all three patches:
Acked-by: Ben Pfaff <blp@ovn.org>
Joe Stringer Aug. 9, 2017, 11:57 p.m. UTC | #2
On 9 August 2017 at 13:46, Ben Pfaff <blp@ovn.org> wrote:
> On Wed, Aug 09, 2017 at 01:38:05PM -0700, Joe Stringer wrote:
>> Signed-off-by: Joe Stringer <joe@ovn.org>
>
> For all three patches:
> Acked-by: Ben Pfaff <blp@ovn.org>

Thanks, applied to master.
diff mbox

Patch

diff --git a/lib/netdev-dummy.c b/lib/netdev-dummy.c
index 62ddd0c67834..f731af1dfd0e 100644
--- a/lib/netdev-dummy.c
+++ b/lib/netdev-dummy.c
@@ -1574,7 +1574,7 @@  netdev_dummy_receive(struct unixctl_conn *conn,
                     unixctl_command_reply_error(conn, "too small packet len");
                     goto exit;
                 }
-                i+=2;
+                i += 2;
             }
             /* Try parse 'argv[i]' as odp flow. */
             packet = eth_from_flow(flow_str, packet_size);