Skip to content

Commit

Permalink
Merge pull request #3310 from mulkieran/fix-typo
Browse files Browse the repository at this point in the history
Fix typo in error message about sector sizes
  • Loading branch information
mulkieran authored Apr 7, 2023
2 parents 974dc0c + c863a9b commit 5a4d9e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/engine/strat_engine/engine.rs
Original file line number Diff line number Diff line change
Expand Up @@ -419,7 +419,7 @@ impl Engine for StratEngine {

let block_size_summary = unowned_devices.blocksizes();
if block_size_summary.len() > 1 {
let err_str = "The devices specified for initializing the pool do do not all have the same physical sector size or do not all have the same logical sector size.".into();
let err_str = "The devices specified for initializing the pool do not all have the same physical sector size or do not all have the same logical sector size".into();
return Err(StratisError::Msg(err_str));
}

Expand Down

0 comments on commit 5a4d9e5

Please sign in to comment.