| commit | 278c1ca2f254d0695d2eba79793d20ce785323ea | [log] [tgz] |
|---|---|---|
| author | NeilBrown <neilb@suse.de> | Mon Mar 19 12:46:40 2012 +1100 |
| committer | NeilBrown <neilb@suse.de> | Mon Mar 19 12:46:40 2012 +1100 |
| tree | 42be282251b17c16e030d7083eef4bbeefe60b41 | |
| parent | 57148964d946614ffc6621539096ded1e7d896ab [diff] |
md/bitmap: change a 'goto' to a normal 'if' construct.
The use of a goto makes the control flow more obscure here.
So make it a normal:
if (x) {
Y;
}
No functional change.
Signed-off-by: NeilBrown <neilb@suse.de>