diff options
| author | Chen Gang <gang.chen.5i5j@gmail.com> | 2014-04-16 07:56:20 +0800 |
|---|---|---|
| committer | Michael Tokarev <mjt@tls.msk.ru> | 2014-04-28 08:55:31 +0400 |
| commit | a629f2fdba18c8860e0995a846f7cb14b03cde24 (patch) | |
| tree | 25d3e0527bd66c2aa51e81a403678e1d32c723a0 | |
| parent | 5d77c8f9b61fbcbf26bb9647935df57a1eed6c05 (diff) | |
| download | focaccia-qemu-a629f2fdba18c8860e0995a846f7cb14b03cde24.tar.gz focaccia-qemu-a629f2fdba18c8860e0995a846f7cb14b03cde24.zip | |
vl: Remove useless 'continue'
"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> Reviewed-by: Markus Armbruster <armbru@redhat.com> Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
| -rw-r--r-- | vl.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/vl.c b/vl.c index d6c5df192a..0b08a029c6 100644 --- a/vl.c +++ b/vl.c @@ -3042,7 +3042,6 @@ int main(int argc, char **argv, char **envp) if (argv[optind][0] != '-') { /* disk image */ optind++; - continue; } else { const QEMUOption *popt; |