Merge pull request #169 from louib/formatting_fixes

Small formatting fix.
This commit is contained in:
PartialVolume
2019-12-29 21:30:04 +00:00
committed by GitHub
2 changed files with 5 additions and 4 deletions

View File

@@ -4,6 +4,7 @@ RELEASE NOTES
v0.27 (pending release)
-----------------------
- Add `verify` method to verify a disk is zero filled [#128](https://github.com/martijnvanbrummelen/nwipe/pull/128)
- Add new HMG IS5 enhanced wipe method [#168](https://github.com/martijnvanbrummelen/nwipe/pull/168)
v0.26
-----

View File

@@ -253,10 +253,10 @@ int nwipe_options_parse( int argc, char** argv )
}
if( strcmp( optarg, "is5enh" ) == 0 )
{
nwipe_options.method = &nwipe_is5enh;
break;
}
{
nwipe_options.method = &nwipe_is5enh;
break;
}
/* Else we do not know this wipe method. */
fprintf( stderr, "Error: Unknown wipe method '%s'.\n", optarg );