All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] fs: btrfs: Fix typo in error message
@ 2020-10-12  9:35 Naoki Hayama
  2020-10-12  9:53 ` Marek Behún
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Naoki Hayama @ 2020-10-12  9:35 UTC (permalink / raw)
  To: u-boot

%s/occured/occurred/

Signed-off-by: Naoki Hayama <naoki.hayama@lineo.co.jp>
---

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

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [PATCH] fs: btrfs: Fix typo in error message
  2020-10-12  9:35 [PATCH] fs: btrfs: Fix typo in error message Naoki Hayama
@ 2020-10-12  9:53 ` Marek Behún
  2020-10-12 11:03 ` Qu Wenruo
  2020-10-23  0:30 ` Tom Rini
  2 siblings, 0 replies; 5+ messages in thread
From: Marek Behún @ 2020-10-12  9:53 UTC (permalink / raw)
  To: u-boot

Reviewed-by: Marek Beh?n <kabel@kernel.org>

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [PATCH] fs: btrfs: Fix typo in error message
  2020-10-12  9:35 [PATCH] fs: btrfs: Fix typo in error message Naoki Hayama
  2020-10-12  9:53 ` Marek Behún
@ 2020-10-12 11:03 ` Qu Wenruo
  2020-10-13  0:45   ` Naoki Hayama
  2020-10-23  0:30 ` Tom Rini
  2 siblings, 1 reply; 5+ messages in thread
From: Qu Wenruo @ 2020-10-12 11:03 UTC (permalink / raw)
  To: u-boot



On 2020/10/12 ??5:35, Naoki Hayama wrote:
> %s/occured/occurred/
> 
> Signed-off-by: Naoki Hayama <naoki.hayama@lineo.co.jp>

I'm definitely not the best guy to review, but this still looks good to me.

Reviewed-by: Qu Wenruo <wqu@suse.com>

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

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [PATCH] fs: btrfs: Fix typo in error message
  2020-10-12 11:03 ` Qu Wenruo
@ 2020-10-13  0:45   ` Naoki Hayama
  0 siblings, 0 replies; 5+ messages in thread
From: Naoki Hayama @ 2020-10-13  0:45 UTC (permalink / raw)
  To: u-boot

Dear Qu,

On 2020/10/12 20:03, Qu Wenruo wrote:
> 
> 
> On 2020/10/12 ??5:35, Naoki Hayama wrote:
>> %s/occured/occurred/
>>
>> Signed-off-by: Naoki Hayama <naoki.hayama@lineo.co.jp>
> 
> I'm definitely not the best guy to review, but this still looks good to me.
> 
> Reviewed-by: Qu Wenruo <wqu@suse.com>
> 
> 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.

Thank you for the review and the advice.
Next time I fix typos extensively, I will do so.

Best regards,
Naoki Hayama

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

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [PATCH] fs: btrfs: Fix typo in error message
  2020-10-12  9:35 [PATCH] fs: btrfs: Fix typo in error message Naoki Hayama
  2020-10-12  9:53 ` Marek Behún
  2020-10-12 11:03 ` Qu Wenruo
@ 2020-10-23  0:30 ` Tom Rini
  2 siblings, 0 replies; 5+ messages in thread
From: Tom Rini @ 2020-10-23  0:30 UTC (permalink / raw)
  To: u-boot

On Mon, Oct 12, 2020 at 06:35:33PM +0900, Naoki Hayama wrote:

> %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>

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 659 bytes
Desc: not available
URL: <https://lists.denx.de/pipermail/u-boot/attachments/20201022/730b28de/attachment.sig>

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2020-10-23  0:30 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-10-12  9:35 [PATCH] fs: btrfs: Fix typo in error message Naoki Hayama
2020-10-12  9:53 ` Marek Behún
2020-10-12 11:03 ` Qu Wenruo
2020-10-13  0:45   ` Naoki Hayama
2020-10-23  0:30 ` Tom Rini

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.