From: Philippe Mathieu-Daudé Date: Tue, 18 Feb 2020 09:43:56 +0000 (+0100) Subject: hw/scsi/esp: Remove superfluous semicolon X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=c62c1fa0e38ca8d2f7b6a91689a3f70721366299;p=qemu.git hw/scsi/esp: Remove superfluous semicolon Fixes: 74d71ea16bc Signed-off-by: Philippe Mathieu-Daudé Acked-by: Paolo Bonzini Reviewed-by: Dr. David Alan Gilbert Reviewed-by: Juan Quintela Message-Id: <20200218094402.26625-8-philmd@redhat.com> Signed-off-by: Laurent Vivier --- diff --git a/hw/scsi/esp.c b/hw/scsi/esp.c index f8fc30cccb..405f8b7cbc 100644 --- a/hw/scsi/esp.c +++ b/hw/scsi/esp.c @@ -293,7 +293,7 @@ static void handle_satn_stop(ESPState *s) s->dma_cb = handle_satn_stop; return; } - s->pdma_cb = satn_stop_pdma_cb;; + s->pdma_cb = satn_stop_pdma_cb; s->cmdlen = get_cmd(s, s->cmdbuf, sizeof(s->cmdbuf)); if (s->cmdlen) { trace_esp_handle_satn_stop(s->cmdlen);