cmd/stcli: Fix metalint ineffasign complaint

This commit is contained in:
Jakob Borg 2016-12-17 10:51:48 +01:00
parent 3c2ac3522c
commit 920a83ec7a
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@ func prettyPrintJSON(json map[string]interface{}) {
}
sort.Strings(jsonKeys)
for _, k := range jsonKeys {
value := ""
var value string
rvalue := remap[k]
switch rvalue.(type) {
case int, int16, int32, int64, uint, uint16, uint32, uint64, float32, float64: