diff options
author | Philippe Mathieu-Daudé <philmd@redhat.com> | 2020-02-18 10:43:57 +0100 |
---|---|---|
committer | Laurent Vivier <laurent@vivier.eu> | 2020-02-18 20:20:49 +0100 |
commit | 180f3fd2d746387d32e53f1a5c75013818dfa86d (patch) | |
tree | 5036aa6d4310f4691d22edfe86846f74fb5e05ca /hw/vfio | |
parent | c62c1fa0e38ca8d2f7b6a91689a3f70721366299 (diff) | |
download | qemu-180f3fd2d746387d32e53f1a5c75013818dfa86d.zip |
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.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/vfio/display.c b/hw/vfio/display.c index a5a608c5b2..f4977c66e1 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) { |