fs: btrfs: Fix typo in error message

%s/occured/occurred/

Signed-off-by: Naoki Hayama <naoki.hayama@lineo.co.jp>
Reviewed-by: Marek Behún <kabel@kernel.org>
Reviewed-by: Qu Wenruo <wqu@suse.com>
This commit is contained in:
Naoki Hayama 2020-10-12 18:35:33 +09:00 committed by Tom Rini
parent 64dbd86b56
commit 09f2107a5f

View File

@ -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;
}