diff mbox series

[ovs-dev] unixctl: Style fix.

Message ID 20180808203107.18532-1-blp@ovn.org
State Accepted
Headers show
Series [ovs-dev] unixctl: Style fix. | expand

Commit Message

Ben Pfaff Aug. 8, 2018, 8:31 p.m. UTC
Reported-by: Aaron Conole <aconole@redhat.com>
Signed-off-by: Ben Pfaff <blp@ovn.org>
---
 lib/unixctl.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Justin Pettit Aug. 8, 2018, 9:14 p.m. UTC | #1
> On Aug 8, 2018, at 1:31 PM, Ben Pfaff <blp@ovn.org> wrote:
> 
> Reported-by: Aaron Conole <aconole@redhat.com>
> Signed-off-by: Ben Pfaff <blp@ovn.org>

Acked-by: Justin Pettit <jpettit@ovn.org>

--Justin
Aaron Conole Aug. 8, 2018, 9:19 p.m. UTC | #2
Ben Pfaff <blp@ovn.org> writes:

> Reported-by: Aaron Conole <aconole@redhat.com>
> Signed-off-by: Ben Pfaff <blp@ovn.org>
> ---

Acked-by: Aaron Conole <aconole@redhat.com>
Ben Pfaff Aug. 8, 2018, 10:17 p.m. UTC | #3
On Wed, Aug 08, 2018 at 05:19:40PM -0400, Aaron Conole wrote:
> Ben Pfaff <blp@ovn.org> writes:
> 
> > Reported-by: Aaron Conole <aconole@redhat.com>
> > Signed-off-by: Ben Pfaff <blp@ovn.org>
> > ---
> 
> Acked-by: Aaron Conole <aconole@redhat.com>

Thanks, applied.
diff mbox series

Patch

diff --git a/lib/unixctl.c b/lib/unixctl.c
index 9b3b0671f33c..730bd043a9ff 100644
--- a/lib/unixctl.c
+++ b/lib/unixctl.c
@@ -426,7 +426,7 @@  unixctl_server_destroy(struct unixctl_server *server)
             kill_connection(conn);
         }
 
-        free (server->path);
+        free(server->path);
         pstream_close(server->listener);
         free(server);
     }