Skip to content

Commit de64587

Browse files
committed
Fix ! fallback warning
1 parent e134216 commit de64587

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/copy.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -588,7 +588,7 @@ impl PreparedCopy {
588588
}
589589

590590
// Return the error, if any.
591-
let result: Result<_, _> = results.into_iter().collect();
591+
let result: Result<(), _> = results.into_iter().collect();
592592
result?;
593593

594594
// Check if an error occurred during data transfer.

0 commit comments

Comments
 (0)