]> git.proxmox.com Git - mirror_qemu.git/commitdiff
audio: error hints need a trailing \n
authorPaolo Bonzini <pbonzini@redhat.com>
Thu, 5 Oct 2023 10:36:39 +0000 (12:36 +0200)
committerPaolo Bonzini <pbonzini@redhat.com>
Sun, 8 Oct 2023 19:08:27 +0000 (21:08 +0200)
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
audio/audio.c

index 730bf2498dcf7d2599df26dfead69b68e68fa725..98621576d955855922ac1973e1641117667fc41c 100644 (file)
@@ -1833,7 +1833,7 @@ bool AUD_register_card (const char *name, QEMUSoundCard *card, Error **errp)
             card->state = audio_init(NULL, errp);
             if (!card->state) {
                 if (!QSIMPLEQ_EMPTY(&audiodevs)) {
-                    error_append_hint(errp, "Perhaps you wanted to set audiodev=%s?",
+                    error_append_hint(errp, "Perhaps you wanted to set audiodev=%s?\n",
                                       QSIMPLEQ_FIRST(&audiodevs)->dev->id);
                 }
                 return false;