more lint fixes

This commit is contained in:
2025-09-17 20:55:22 +02:00
parent 5c4229fad2
commit 83db6880d1

View File

@@ -75,7 +75,11 @@ func PrintColumns(conf *Config, names []string, output io.Writer) error {
log.Fatalf("failed to print to output: %s", err)
}
}
fmt.Fprintln(output)
_, err := fmt.Fprintln(output)
if err != nil {
log.Fatalf("failed to print to output: %s", err)
}
}
return nil