]> git.proxmox.com Git - mirror_qemu.git/commitdiff
s390x/pv: remove semicolon from macro definition
authorClaudio Imbrenda <imbrenda@linux.ibm.com>
Mon, 10 Oct 2022 15:10:41 +0000 (17:10 +0200)
committerThomas Huth <thuth@redhat.com>
Thu, 27 Oct 2022 07:09:50 +0000 (09:09 +0200)
Remove spurious semicolon at the end of the macro s390_pv_cmd

Signed-off-by: Claudio Imbrenda <imbrenda@linux.ibm.com>
Acked-by: Cornelia Huck <cohuck@redhat.com>
Message-Id: <20221010151041.89071-1-imbrenda@linux.ibm.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>
hw/s390x/pv.c

index 728ba24547627994ac6059051f75c7585568c469..8dfe92d8dfdd59bc6452c76da83c0d97d97b40bb 100644 (file)
@@ -50,7 +50,7 @@ static int __s390_pv_cmd(uint32_t cmd, const char *cmdname, void *data)
  * This macro lets us pass the command as a string to the function so
  * we can print it on an error.
  */
-#define s390_pv_cmd(cmd, data) __s390_pv_cmd(cmd, #cmd, data);
+#define s390_pv_cmd(cmd, data) __s390_pv_cmd(cmd, #cmd, data)
 #define s390_pv_cmd_exit(cmd, data)    \
 {                                      \
     int rc;                            \