diff options
author | Volker Rümelin <vr_qemu@t-online.de> | 2023-01-21 10:47:27 +0100 |
---|---|---|
committer | Marc-André Lureau <marcandre.lureau@redhat.com> | 2023-03-06 10:30:23 +0400 |
commit | b637a61c6f27f8023905223314fe18819540162f (patch) | |
tree | 93083977c572b31bd5f480ae7025fc553860079a /audio | |
parent | 90394fe15f95f58ad34684541cd480422b31d0af (diff) | |
download | qemu-b637a61c6f27f8023905223314fe18819540162f.zip qemu-b637a61c6f27f8023905223314fe18819540162f.tar.gz qemu-b637a61c6f27f8023905223314fe18819540162f.tar.bz2 |
audio: rename hardware store to backend
Use a consistent friendly name for the HWVoiceOut and HWVoiceIn
structures.
Reviewed-by: Thomas Huth <thuth@redhat.com>
Signed-off-by: Volker Rümelin <vr_qemu@t-online.de>
Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Message-Id: <20230121094735.11644-3-vr_qemu@t-online.de>
Diffstat (limited to 'audio')
-rw-r--r-- | audio/audio_template.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/audio/audio_template.h b/audio/audio_template.h index f0ef262..33af42ed 100644 --- a/audio/audio_template.h +++ b/audio/audio_template.h @@ -529,8 +529,8 @@ SW *glue (AUD_open_, TYPE) ( HW *hw = sw->hw; if (!hw) { - dolog ("Internal logic error voice `%s' has no hardware store\n", - SW_NAME (sw)); + dolog("Internal logic error: voice `%s' has no backend\n", + SW_NAME(sw)); goto fail; } |