migration/multifd: Remove superfluous semicolons
authorPhilippe Mathieu-Daudé <f4bug@amsat.org>
Mon, 21 Sep 2020 04:02:31 +0000 (06:02 +0200)
committerLaurent Vivier <laurent@vivier.eu>
Wed, 23 Sep 2020 17:13:56 +0000 (19:13 +0200)
checkpatch.pl report superfluous semicolons since commit
ee0f3c09e01, but this one was missed:

  scripts/checkpatch.pl d32ca5ad798~..d32ca5ad798
  ERROR: superfluous trailing semicolon
  #498: FILE: migration/multifd.c:308:
  +    ram_counters.transferred += transferred;;
  total: 1 errors, 1 warnings, 2073 lines checked

Fixes: d32ca5ad798 ("multifd: Split multifd code into its own file")
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Reviewed-by: Li Qiang <liq3ea@gmail.com>
Message-Id: <20200921040231.437653-1-f4bug@amsat.org>
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
migration/multifd.c

index ac84a61797f38dff2cfcbcf00b6dcc6b7827f167..2de5263c326314f485d99e5bca1bffa26eb0411c 100644 (file)
@@ -447,7 +447,7 @@ static int multifd_send_pages(QEMUFile *f)
                 + p->packet_len;
     qemu_file_update_transfer(f, transferred);
     ram_counters.multifd_bytes += transferred;
-    ram_counters.transferred += transferred;;
+    ram_counters.transferred += transferred;
     qemu_mutex_unlock(&p->mutex);
     qemu_sem_post(&p->sem);