diff options
author | Michael Tokarev <mjt@tls.msk.ru> | 2023-11-14 00:12:48 +0300 |
---|---|---|
committer | Michael Tokarev <mjt@tls.msk.ru> | 2023-11-15 11:09:17 +0300 |
commit | aaf851a20cf6f762583642361a61ff71fda44fc2 (patch) | |
tree | 377bf27a8f7491d7dc7ff037dd983238d8a2dc57 /hw/audio | |
parent | 7ca24cd1c93b41a34f30eae1367faae9483e078d (diff) |
hw/audio/virtio-snd.c: spelling: initalize
Fixes: eb9ad377bb94 "virtio-sound: handle control messages and streams"
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
Reviewed-by: Stefan Weil <sw@weilnetz.de>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Diffstat (limited to 'hw/audio')
-rw-r--r-- | hw/audio/virtio-snd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/audio/virtio-snd.c b/hw/audio/virtio-snd.c index a18a9949a7..2fe966e311 100644 --- a/hw/audio/virtio-snd.c +++ b/hw/audio/virtio-snd.c @@ -1126,7 +1126,7 @@ static void virtio_snd_realize(DeviceState *dev, Error **errp) status = virtio_snd_set_pcm_params(vsnd, i, &default_params); if (status != cpu_to_le32(VIRTIO_SND_S_OK)) { error_setg(errp, - "Can't initalize stream params, device responded with %s.", + "Can't initialize stream params, device responded with %s.", print_code(status)); return; } |