From mboxrd@z Thu Jan 1 00:00:00 1970 From: Qu Wenruo Date: Mon, 12 Oct 2020 19:03:08 +0800 Subject: [PATCH] fs: btrfs: Fix typo in error message In-Reply-To: <20201012093533.19863-1-naoki.hayama@lineo.co.jp> References: <20201012093533.19863-1-naoki.hayama@lineo.co.jp> Message-ID: List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de On 2020/10/12 ??5:35, Naoki Hayama wrote: > %s/occured/occurred/ > > Signed-off-by: Naoki Hayama I'm definitely not the best guy to review, but this still looks good to me. Reviewed-by: Qu Wenruo BTW, if you're still looking into the spell problems, it would be better to put all of the typo fixes into a big patch. Thanks, Qu > --- > > fs/btrfs/btrfs.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/fs/btrfs/btrfs.c b/fs/btrfs/btrfs.c > index cbf9dcffeb..e48972ffa2 100644 > --- a/fs/btrfs/btrfs.c > +++ b/fs/btrfs/btrfs.c > @@ -150,7 +150,7 @@ int btrfs_ls(const char *path) > } > ret = btrfs_iter_dir(root, ino, show_dir); > if (ret < 0) { > - error("An error occured while listing directory %s", path); > + error("An error occurred while listing directory %s", path); > return ret; > } > return 0; > @@ -257,7 +257,7 @@ int btrfs_read(const char *file, void *buf, loff_t offset, loff_t len, > > ret = btrfs_file_read(root, ino, offset, len, buf); > if (ret < 0) { > - error("An error occured while reading file %s", file); > + error("An error occurred while reading file %s", file); > return ret; > } > >