From d19dc0579391d51f92ee0e6c8ec98bfe63a8e396 Mon Sep 17 00:00:00 2001 From: louib Date: Sun, 29 Dec 2019 16:19:17 -0500 Subject: [PATCH] Small formatting fix. --- CHANGELOG.md | 1 + src/options.c | 8 ++++---- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 66e4001..e70f632 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 ----- diff --git a/src/options.c b/src/options.c index f25e12f..38f1732 100644 --- a/src/options.c +++ b/src/options.c @@ -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 );