diff options
author | Thorsten Blum <thorsten.blum@linux.dev> | 2025-04-22 19:47:57 +0200 |
---|---|---|
committer | Richard Weinberger <richard@nod.at> | 2025-05-22 20:50:43 +0200 |
commit | 73e9bb465f4ab8cdfc99a1a2252ae80d7587bfc0 (patch) | |
tree | 902ced3e6771f7447ae8c62a9cf43fc4d5269137 | |
parent | 82f2b0b97b36ee3fcddf0f0780a9a0825d52fec3 (diff) |
ubifs: Fix grammar in error message
s/much/many/
Reviewed-by: Zhihao Cheng <chengzhihao1@huawei.com>
Signed-off-by: Thorsten Blum <thorsten.blum@linux.dev>
Signed-off-by: Richard Weinberger <richard@nod.at>
-rw-r--r-- | fs/ubifs/journal.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ubifs/journal.c b/fs/ubifs/journal.c index ee954e64ce7f..e28ab4395e5c 100644 --- a/fs/ubifs/journal.c +++ b/fs/ubifs/journal.c @@ -985,7 +985,7 @@ int ubifs_jnl_write_inode(struct ubifs_info *c, const struct inode *inode) dbg_jnl("ino %lu, nlink %u", inode->i_ino, inode->i_nlink); if (kill_xattrs && ui->xattr_cnt > ubifs_xattr_max_cnt(c)) { - ubifs_err(c, "Cannot delete inode, it has too much xattrs!"); + ubifs_err(c, "Cannot delete inode, it has too many xattrs!"); err = -EPERM; ubifs_ro_mode(c, err); return err; |