diff options
author | Matthew Heon <matthew.heon@gmail.com> | 2018-02-27 15:36:36 -0500 |
---|---|---|
committer | Atomic Bot <atomic-devel@projectatomic.io> | 2018-03-01 21:17:51 +0000 |
commit | 83d7ae6506f7aaf1f7d543412a148b4bf4cd6657 (patch) | |
tree | 229b1f3b746541ce6c269e6fe73661795b6d675e /libpod/container_internal.go | |
parent | 780baec1d9fc6f733d06fafddb53655784e2f6f1 (diff) | |
download | podman-83d7ae6506f7aaf1f7d543412a148b4bf4cd6657.tar.gz podman-83d7ae6506f7aaf1f7d543412a148b4bf4cd6657.tar.bz2 podman-83d7ae6506f7aaf1f7d543412a148b4bf4cd6657.zip |
Fix gofmt & golint
Signed-off-by: Matthew Heon <matthew.heon@gmail.com>
Closes: #412
Approved by: baude
Diffstat (limited to 'libpod/container_internal.go')
-rw-r--r-- | libpod/container_internal.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libpod/container_internal.go b/libpod/container_internal.go index 61f3410c9..3223961fa 100644 --- a/libpod/container_internal.go +++ b/libpod/container_internal.go @@ -102,7 +102,7 @@ func (c *Container) attachSocketPath() string { // Get PID file path for a container's exec session func (c *Container) execPidPath(sessionID string) string { - return filepath.Join(c.state.RunDir, "exec_pid_" + sessionID) + return filepath.Join(c.state.RunDir, "exec_pid_"+sessionID) } // Sync this container with on-disk state and runc status |