diff options
author | Colin Ian King <colin.king@canonical.com> | 2017-04-29 23:14:21 +0100 |
---|---|---|
committer | Michael S. Tsirkin <mst@redhat.com> | 2017-05-09 16:43:24 +0300 |
commit | 96fb20c343be46afca37d6c501d4cf13d58e110a (patch) | |
tree | 63e4ffd80364171e50c7f255d9533ed1ac4bd43b | |
parent | 56da5fd04e3d51d0d876c685b0107ca357b9fd9d (diff) | |
download | linux-96fb20c343be46afca37d6c501d4cf13d58e110a.tar.gz linux-96fb20c343be46afca37d6c501d4cf13d58e110a.tar.bz2 linux-96fb20c343be46afca37d6c501d4cf13d58e110a.zip |
tools/virtio: fix spelling mistake: "wakeus" -> "wakeups"
trivial fix to spelling mistake in an error message.
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Acked-by: Jason Wang <jasowang@redhat.com>
-rw-r--r-- | tools/virtio/virtio_test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/virtio/virtio_test.c b/tools/virtio/virtio_test.c index 76d6f583c249..0fecaec90d0d 100644 --- a/tools/virtio/virtio_test.c +++ b/tools/virtio/virtio_test.c @@ -202,7 +202,7 @@ static void run_test(struct vdev_info *dev, struct vq_info *vq, test = 0; r = ioctl(dev->control, VHOST_TEST_RUN, &test); assert(r >= 0); - fprintf(stderr, "spurious wakeus: 0x%llx\n", spurious); + fprintf(stderr, "spurious wakeups: 0x%llx\n", spurious); } const char optstring[] = "h"; |