diff options
| author | Ladi Prosek | 2017-10-17 16:40:51 +0200 |
|---|---|---|
| committer | Michael Tokarev | 2017-12-18 15:07:02 +0100 |
| commit | 3c254ab8d76e49d2bda818ec5885d110f2e1e67e (patch) | |
| tree | 06c5a4dc91ddee98a48ee7670134c8d47541ca6f /migration | |
| parent | Merge remote-tracking branch 'remotes/stefanberger/tags/pull-tpm-2017-12-15-1... (diff) | |
| download | qemu-3c254ab8d76e49d2bda818ec5885d110f2e1e67e.tar.gz qemu-3c254ab8d76e49d2bda818ec5885d110f2e1e67e.tar.xz qemu-3c254ab8d76e49d2bda818ec5885d110f2e1e67e.zip | |
Remove empty statements
Thanks to Laszlo Ersek for spotting the double semicolon in target/i386/kvm.c
I have trivially grepped the tree for ';;' in C files.
Suggested-by: Laszlo Ersek <lersek@redhat.com>
Signed-off-by: Ladi Prosek <lprosek@redhat.com>
Reviewed-by: Laszlo Ersek <lersek@redhat.com>
Reviewed-by: Cornelia Huck <cohuck@redhat.com>
Reviewed-by: Laurent Vivier <laurent@vivier.eu>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
Diffstat (limited to 'migration')
| -rw-r--r-- | migration/block.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/migration/block.c b/migration/block.c index 7147171bb7..e68e090c6f 100644 --- a/migration/block.c +++ b/migration/block.c @@ -897,7 +897,7 @@ static int block_load(QEMUFile *f, void *opaque, int version_id) int len, flags; char device_name[256]; int64_t addr; - BlockBackend *blk, *blk_prev = NULL;; + BlockBackend *blk, *blk_prev = NULL; Error *local_err = NULL; uint8_t *buf; int64_t total_sectors = 0; |
