block.c: add newline for "Detected format" warning

Add the forgotten trailing newline.

Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
master
Michael Tokarev 2023-04-05 16:34:04 +03:00
parent 5fb9e82955
commit fbdffb08df
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}