Skip to content
This repository was archived by the owner on Oct 18, 2021. It is now read-only.

Commit 6d29512

Browse files
author
Saghm Rossi
committed
fix minor compilation error
1 parent edb07c1 commit 6d29512

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/gridfs/file.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,7 @@ impl File {
325325
match result {
326326
Ok(Some(doc)) => match doc.get("data") {
327327
Some(&Bson::Binary(_, ref buf)) => {
328-
cache.data = buf.clone()
328+
cache.data = buf.clone();
329329
cache.err = None;
330330
},
331331
_ => cache.err = Some(OperationError("Chunk contained no data.".to_owned())),

0 commit comments

Comments
 (0)