[PATCH] tools/virtio: virtio_test: Fix indentation

Rong Tao posted 1 patch 2 years, 6 months ago
tools/virtio/virtio_test.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
[PATCH] tools/virtio: virtio_test: Fix indentation
Posted by Rong Tao 2 years, 6 months ago
Replace eight spaces with Tab.

Signed-off-by: Rong Tao <rtoax@foxmail.com>
---
 tools/virtio/virtio_test.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/virtio/virtio_test.c b/tools/virtio/virtio_test.c
index 6e348fbdc5d8..44409a311580 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);
-- 
2.39.1
Re: [PATCH] tools/virtio: virtio_test: Fix indentation
Posted by Stefano Garzarella 2 years, 6 months ago
On Thu, Mar 09, 2023 at 02:13:20PM +0800, Rong Tao wrote:
>Replace eight spaces with Tab.
>
>Signed-off-by: Rong Tao <rtoax@foxmail.com>
>---
> tools/virtio/virtio_test.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)

Acked-by: Stefano Garzarella <sgarzare@redhat.com>

>
>diff --git a/tools/virtio/virtio_test.c b/tools/virtio/virtio_test.c
>index 6e348fbdc5d8..44409a311580 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);
>-- 
>2.39.1
>