remove unneeded fmt.Sprintf

This commit is contained in:
bartfokker 2018-10-25 22:13:04 +02:00
parent f158fa742f
commit efef345665

View File

@ -19,7 +19,7 @@ func (row *Compact) SetIO(read int64, write int64) {
}
func (row *Compact) SetPids(val int) {
label := fmt.Sprintf("%s", strconv.Itoa(val))
label := strconv.Itoa(val)
row.Pids.Set(label)
}