diff options
author | Akinobu Mita <[email protected]> | 2013-04-29 16:21:41 -0700 |
---|---|---|
committer | Linus Torvalds <[email protected]> | 2013-04-29 18:28:43 -0700 |
commit | 70e3ba72ba9afd4ec28ab09f6a27aac00c30b358 (patch) | |
tree | 4141a47fc8157b0fc65f2756561ccda876a039dd /fs/jbd2/commit.c | |
parent | 33d7c5e539ba54f12b2628f7ef62ed1a7535956d (diff) |
net/core: remove duplicate statements by do-while loop
Remove duplicate statements by using do-while loop instead of while loop.
- A;
- while (e) {
+ do {
A;
- }
+ } while (e);
Signed-off-by: Akinobu Mita <[email protected]>
Cc: "David S. Miller" <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
Diffstat (limited to 'fs/jbd2/commit.c')
0 files changed, 0 insertions, 0 deletions