aboutsummaryrefslogtreecommitdiff
path: root/hw/vfio
diff options
context:
space:
mode:
authorPhilippe Mathieu-Daudé <philmd@redhat.com>2020-02-18 10:43:57 +0100
committerLaurent Vivier <laurent@vivier.eu>2020-02-18 20:20:49 +0100
commit180f3fd2d746387d32e53f1a5c75013818dfa86d (patch)
tree5036aa6d4310f4691d22edfe86846f74fb5e05ca /hw/vfio
parentc62c1fa0e38ca8d2f7b6a91689a3f70721366299 (diff)
downloadqemu-180f3fd2d746387d32e53f1a5c75013818dfa86d.zip
qemu-180f3fd2d746387d32e53f1a5c75013818dfa86d.tar.gz
qemu-180f3fd2d746387d32e53f1a5c75013818dfa86d.tar.bz2
hw/vfio/display: Remove superfluous semicolon
Fixes: 8b818e059bf Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com> Acked-by: Paolo Bonzini <pbonzini@redhat.com> Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com> Reviewed-by: Juan Quintela <quintela@redhat.com> Message-Id: <20200218094402.26625-9-philmd@redhat.com> Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Diffstat (limited to 'hw/vfio')
-rw-r--r--hw/vfio/display.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/vfio/display.c b/hw/vfio/display.c
index a5a608c..f4977c6 100644
--- a/hw/vfio/display.c
+++ b/hw/vfio/display.c
@@ -287,7 +287,7 @@ static void vfio_display_dmabuf_update(void *opaque)
VFIOPCIDevice *vdev = opaque;
VFIODisplay *dpy = vdev->dpy;
VFIODMABuf *primary, *cursor;
- bool free_bufs = false, new_cursor = false;;
+ bool free_bufs = false, new_cursor = false;
primary = vfio_display_get_dmabuf(vdev, DRM_PLANE_TYPE_PRIMARY);
if (primary == NULL) {