Skip to content

Commit

Permalink
tools/virtio: virtio_test: Fix indentation
Browse files Browse the repository at this point in the history
Replace eight spaces with Tab.

Signed-off-by: Rong Tao <[email protected]>
Message-Id: <[email protected]>
Signed-off-by: Michael S. Tsirkin <[email protected]>
  • Loading branch information
Rtoax authored and mstsirkin committed Apr 21, 2023
1 parent 48cd6bc commit 9b2b3de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/virtio/virtio_test.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 9b2b3de

Please sign in to comment.