diff mbox

[trivial,v2,1/2] vl: Remove useless 'continue'

Message ID 534DC724.4040301@gmail.com
State New
Headers show

Commit Message

Chen Gang April 15, 2014, 11:56 p.m. UTC
"This if else has no code between it and the end of the enclosing
while loop. This makes this continue redundant."

Signed-off-by: Chen Gang <gang.chen.5i5j@gmail.com>
---
 vl.c |    1 -
 1 file changed, 1 deletion(-)
diff mbox

Patch

diff --git a/vl.c b/vl.c
index 9975e5a..7505002 100644
--- a/vl.c
+++ b/vl.c
@@ -3034,7 +3034,6 @@  int main(int argc, char **argv, char **envp)
         if (argv[optind][0] != '-') {
             /* disk image */
             optind++;
-            continue;
         } else {
             const QEMUOption *popt;