From: Hubert Jasudowicz Date: Thu, 1 Jul 2021 21:11:48 +0000 (+0200) Subject: virtiofsd: Add missing newline in error message X-Git-Tag: v6.1.0-rc0~29^2~5 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=7ef2408a96c4471383aecf263a7ea2bd51a3235c;p=thirdparty%2Fqemu.git virtiofsd: Add missing newline in error message Signed-off-by: Hubert Jasudowicz Reviewed-by: Philippe Mathieu-Daudé Reviewed-by: Stefan Hajnoczi Message-Id: Signed-off-by: Laurent Vivier --- diff --git a/tools/virtiofsd/fuse_virtio.c b/tools/virtiofsd/fuse_virtio.c index fa4aff9b0ee..fc2564a6033 100644 --- a/tools/virtiofsd/fuse_virtio.c +++ b/tools/virtiofsd/fuse_virtio.c @@ -917,7 +917,7 @@ static bool fv_socket_lock(struct fuse_session *se) dir = qemu_get_local_state_pathname("run/virtiofsd"); if (g_mkdir_with_parents(dir, S_IRWXU) < 0) { - fuse_log(FUSE_LOG_ERR, "%s: Failed to create directory %s: %s", + fuse_log(FUSE_LOG_ERR, "%s: Failed to create directory %s: %s\n", __func__, dir, strerror(errno)); return false; }