diff mbox series

[PULL,05/16] block.c: add newline for "Detected format" warning

Message ID fbdffb08dfe5db0ffed22619bad1772a675e11e2.1686379708.git.mjt@tls.msk.ru (mailing list archive)
State New, archived
Headers show
Series [PULL,01/16] docs: Fix trivial typos in vhost-user.rst | expand

Commit Message

Michael Tokarev June 10, 2023, 6:57 a.m. UTC
Add the forgotten trailing newline.

Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
---
 block.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/block.c b/block.c
index dae629075c..0637265c26 100644
--- a/block.c
+++ b/block.c
@@ -7158,7 +7158,7 @@  void bdrv_img_create(const char *filename, const char *fmt,
             if (!backing_fmt) {
                 error_setg(&local_err,
                            "Backing file specified without backing format");
-                error_append_hint(&local_err, "Detected format of %s.",
+                error_append_hint(&local_err, "Detected format of %s.\n",
                                   bs->drv->format_name);
                 goto out;
             }