fix(pkg/storage/logfile): remove func append - dead code

This commit is contained in:
2020-01-13 22:45:51 +01:00
parent 0765bd29d1
commit c266117785
2 changed files with 1 additions and 15 deletions

View File

@ -86,7 +86,7 @@ func PrintSensors(cnf *config.Configuration, w io.Writer) error {
}
if sensor.I2CAddress != nil {
fmt.Fprintf(tw, "%v\t", *sensor.I2CAddress)
fmt.Fprintf(tw, "%v\t", string(*sensor.I2CAddress))
} else {
fmt.Fprintf(tw, "\t")
}