summaryrefslogtreecommitdiff
path: root/libpod
diff options
context:
space:
mode:
authorLawrence Chan <element103@gmail.com>2019-06-10 11:47:49 -0500
committerLawrence Chan <element103@gmail.com>2019-06-14 17:42:05 -0500
commit7baa6b62666cbcced481703c3da9b86e613d1e8f (patch)
treeb9a221f0f3c585f78556963cac4f00b4de79f749 /libpod
parent373048aaca279c006672b339b099af6e5a87b60a (diff)
downloadpodman-7baa6b62666cbcced481703c3da9b86e613d1e8f.tar.gz
podman-7baa6b62666cbcced481703c3da9b86e613d1e8f.tar.bz2
podman-7baa6b62666cbcced481703c3da9b86e613d1e8f.zip
Remove unnecessary var type to fix lint warning
Signed-off-by: Lawrence Chan <element103@gmail.com>
Diffstat (limited to 'libpod')
-rw-r--r--libpod/runtime.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/libpod/runtime.go b/libpod/runtime.go
index 34a3ea9c8..2c50fce85 100644
--- a/libpod/runtime.go
+++ b/libpod/runtime.go
@@ -47,10 +47,10 @@ const (
var (
// InstallPrefix is the prefix where podman will be installed.
// It can be overridden at build time.
- installPrefix string = "/usr/local"
+ installPrefix = "/usr/local"
// EtcDir is the sysconfdir where podman should look for system config files.
// It can be overridden at build time.
- etcDir string = "/etc"
+ etcDir = "/etc"
// SeccompDefaultPath defines the default seccomp path
SeccompDefaultPath = installPrefix + "/share/containers/seccomp.json"