From: Paolo Bonzini Date: Thu, 5 Oct 2023 10:36:39 +0000 (+0200) Subject: audio: error hints need a trailing \n X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=c7c5caeb1f314c5662a3b2985fe3befebf45b650;p=qemu.git audio: error hints need a trailing \n Signed-off-by: Paolo Bonzini --- diff --git a/audio/audio.c b/audio/audio.c index 730bf2498d..98621576d9 100644 --- a/audio/audio.c +++ b/audio/audio.c @@ -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;