From: Rong Tao Date: Thu, 9 Mar 2023 06:13:20 +0000 (+0800) Subject: tools/virtio: virtio_test: Fix indentation X-Git-Tag: v6.6.17~4994^2~48 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9b2b3de63c07123c0ec9b912d7b8e77b150e520b;p=platform%2Fkernel%2Flinux-rpi.git tools/virtio: virtio_test: Fix indentation Replace eight spaces with Tab. Signed-off-by: Rong Tao Message-Id: Signed-off-by: Michael S. Tsirkin --- diff --git a/tools/virtio/virtio_test.c b/tools/virtio/virtio_test.c index 120062f..280c6f8 100644 --- a/tools/virtio/virtio_test.c +++ b/tools/virtio/virtio_test.c @@ -134,7 +134,7 @@ static void vdev_info_init(struct vdev_info* dev, unsigned long long features) dev->buf_size = 1024; dev->buf = malloc(dev->buf_size); assert(dev->buf); - dev->control = open("/dev/vhost-test", O_RDWR); + dev->control = open("/dev/vhost-test", O_RDWR); assert(dev->control >= 0); r = ioctl(dev->control, VHOST_SET_OWNER, NULL); assert(r >= 0);