From: Kari Argillander Date: Thu, 9 Sep 2021 18:09:32 +0000 (+0300) Subject: fs/ntfs3: Fix wrong error message $Logfile -> $UpCase X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=0412016e48076f5f9dbdcc6613436e3c6db89523;p=linux.git fs/ntfs3: Fix wrong error message $Logfile -> $UpCase Fix wrong error message $Logfile -> $UpCase. Probably copy paste. Fixes: 203c2b3a406a ("fs/ntfs3: Add initialization of super block") Signed-off-by: Kari Argillander Signed-off-by: Konstantin Komarov --- diff --git a/fs/ntfs3/super.c b/fs/ntfs3/super.c index acfa00acf4dd1..1e01184f4ee25 100644 --- a/fs/ntfs3/super.c +++ b/fs/ntfs3/super.c @@ -1201,7 +1201,7 @@ static int ntfs_fill_super(struct super_block *sb, struct fs_context *fc) inode = ntfs_iget5(sb, &ref, &NAME_UPCASE); if (IS_ERR(inode)) { err = PTR_ERR(inode); - ntfs_err(sb, "Failed to load \x24LogFile."); + ntfs_err(sb, "Failed to load $UpCase."); inode = NULL; goto out; }