From 7baa6b62666cbcced481703c3da9b86e613d1e8f Mon Sep 17 00:00:00 2001 From: Lawrence Chan Date: Mon, 10 Jun 2019 11:47:49 -0500 Subject: Remove unnecessary var type to fix lint warning Signed-off-by: Lawrence Chan --- libpod/runtime.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libpod') 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" -- cgit v1.2.3-54-g00ecf