Skip to content

Commit

Permalink
Add missing semicolon to appease rustfmt
Browse files Browse the repository at this point in the history
  • Loading branch information
mbestavros authored and frozencemetery committed Jan 25, 2019
1 parent b4969ff commit 8bbd809
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/secure_mount.rs
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ fn mount() -> Result<String, i32> {
if !secure_dir_path.exists() {
match fs::create_dir(secure_dir_path) {
Ok(()) => {
return Ok(secure_dir_path.to_str().unwrap().to_string())
return Ok(secure_dir_path.to_str().unwrap().to_string());
}
Err(e) => {
error!("Failed to create directory, error {}", e);
Expand Down

0 comments on commit 8bbd809

Please sign in to comment.