Skip to content

Commit 710f7df

Browse files
committed
Fix lint
1 parent f1c55ff commit 710f7df

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/storage/storage.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ func SaveFrom(objStorage ObjectStorage, p string, callback func(w io.Writer) err
8989
go func() {
9090
defer pw.Close()
9191
if err := callback(pw); err != nil {
92-
pw.CloseWithError(err)
92+
_ = pw.CloseWithError(err)
9393
}
9494
}()
9595

0 commit comments

Comments
 (0)