Skip to content

Commit 425439e

Browse files
committed
Remove needless borrow
1 parent 756505e commit 425439e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/uploaders.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ impl Uploader {
101101
let mut response = Vec::new();
102102
{
103103
let mut s3req =
104-
bucket.put(&mut handle, &path, &mut body, content_type, content_length);
104+
bucket.put(&mut handle, path, &mut body, content_type, content_length);
105105
s3req
106106
.write_function(|data| {
107107
response.extend(data);

0 commit comments

Comments
 (0)