Message ID | 1316206180-6375-4-git-send-email-sandeen@redhat.com |
---|---|
State | Accepted, archived |
Headers | show |
On Fri, Sep 16, 2011 at 03:49:18PM -0500, Eric Sandeen wrote: > The i++; statement is unreachable; fix same as commit > f1c2eaac535bd9172a35ce39b6d8f392321f274d in util-linux > > Signed-off-by: Eric Sandeen <sandeen@redhat.com> Applied, thanks. - Ted -- To unsubscribe from this list: send the line "unsubscribe linux-ext4" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
diff --git a/misc/fsck.c b/misc/fsck.c index fe9426e..9345233 100644 --- a/misc/fsck.c +++ b/misc/fsck.c @@ -1179,8 +1179,8 @@ static void PRS(int argc, char *argv[]) if (progress_fd < 0) progress_fd = 0; else { + ++i; goto next_arg; - i++; } } break;
The i++; statement is unreachable; fix same as commit f1c2eaac535bd9172a35ce39b6d8f392321f274d in util-linux Signed-off-by: Eric Sandeen <sandeen@redhat.com> --- misc/fsck.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)