diff options
author | Hubert Jasudowicz | 2021-07-01 23:11:48 +0200 |
---|---|---|
committer | Laurent Vivier | 2021-07-09 18:42:46 +0200 |
commit | 7ef2408a96c4471383aecf263a7ea2bd51a3235c (patch) | |
tree | 44a4eaf19660dc1170879cb8adb7f3ea6796fa6f /tools | |
parent | misc: Fix "havn't" typo (diff) | |
download | qemu-7ef2408a96c4471383aecf263a7ea2bd51a3235c.tar.gz qemu-7ef2408a96c4471383aecf263a7ea2bd51a3235c.tar.xz qemu-7ef2408a96c4471383aecf263a7ea2bd51a3235c.zip |
virtiofsd: Add missing newline in error message
Signed-off-by: Hubert Jasudowicz <hubert.jasudowicz@gmail.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
Message-Id: <e5914ad202a13e9c1bc2a5efa267ff3bd4f48db6.1625173475.git.hubert.jasudowicz@gmail.com>
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/virtiofsd/fuse_virtio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/virtiofsd/fuse_virtio.c b/tools/virtiofsd/fuse_virtio.c index fa4aff9b0e..fc2564a603 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; } |