Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
julienrbrt committed Jan 10, 2025
1 parent 9a9e6bd commit 432c7c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ignite/pkg/cliui/entrywriter/entrywriter.go
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ func Write(out io.Writer, header []string, entries ...[]string) error {
if len(entry) != len(header) {
return errors.Wrapf(ErrInvalidFormat, "entry %d doesn't match header length", i)
}
if _, err := fmt.Fprintf(w, formatLine(entry, false)+"\n"); err != nil {
if _, err := fmt.Fprint(w, formatLine(entry, false)+"\n"); err != nil {
return err
}
}
Expand Down

0 comments on commit 432c7c4

Please sign in to comment.