From a4317bed14529cd7b5d6321d7f7b1a3e32ca4130 Mon Sep 17 00:00:00 2001 From: szaka Date: Mon, 11 Dec 2006 18:33:38 +0000 Subject: [PATCH] try_fuse_mount(): log why the FUSE mount point creation failed --- src/ntfs-3g.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ntfs-3g.c b/src/ntfs-3g.c index 814827d3..f82b25c1 100644 --- a/src/ntfs-3g.c +++ b/src/ntfs-3g.c @@ -1980,7 +1980,7 @@ static struct fuse_chan *try_fuse_mount(char *parsed_options) fc = fuse_mount(opts.mnt_point, &margs); if (!fc) - ntfs_log_error("Failed to create FUSE mount point.\n"); + ntfs_log_perror("Failed to create FUSE mount point"); free_args: fuse_opt_free_args(&margs); return fc;