Skip to content

Commit

Permalink
Fix typo in error message about sector sizes
Browse files Browse the repository at this point in the history
Also remove terminating period.

Signed-off-by: mulhern <[email protected]>
  • Loading branch information
mulkieran committed Apr 7, 2023
1 parent 974dc0c commit c863a9b
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 c863a9b

Please sign in to comment.