Message ID | 20220504155535.239180-1-colin.i.king@gmail.com (mailing list archive) |
---|---|
State | Accepted |
Commit | 5e91d2a4146946ea0abc984ca957f12b70632901 |
Headers | show |
Series | [next] selftests/seccomp: Fix spelling mistake "Coud" -> "Could" | expand |
On 5/4/22 9:55 AM, Colin Ian King wrote: > There is a spelling mistake in an error message. Fix it. > > Signed-off-by: Colin Ian King <colin.i.king@gmail.com> > --- > tools/testing/selftests/seccomp/seccomp_bpf.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/tools/testing/selftests/seccomp/seccomp_bpf.c b/tools/testing/selftests/seccomp/seccomp_bpf.c > index 29c973f606b2..136df5b76319 100644 > --- a/tools/testing/selftests/seccomp/seccomp_bpf.c > +++ b/tools/testing/selftests/seccomp/seccomp_bpf.c > @@ -4320,7 +4320,7 @@ static ssize_t get_nth(struct __test_metadata *_metadata, const char *path, > > f = fopen(path, "r"); > ASSERT_NE(f, NULL) { > - TH_LOG("Coud not open %s: %s", path, strerror(errno)); > + TH_LOG("Could not open %s: %s", path, strerror(errno)); > } > > for (i = 0; i < position; i++) { > Thank you. I will pull this for Linux 5.19-rc1 thanks, -- Shuah
diff --git a/tools/testing/selftests/seccomp/seccomp_bpf.c b/tools/testing/selftests/seccomp/seccomp_bpf.c index 29c973f606b2..136df5b76319 100644 --- a/tools/testing/selftests/seccomp/seccomp_bpf.c +++ b/tools/testing/selftests/seccomp/seccomp_bpf.c @@ -4320,7 +4320,7 @@ static ssize_t get_nth(struct __test_metadata *_metadata, const char *path, f = fopen(path, "r"); ASSERT_NE(f, NULL) { - TH_LOG("Coud not open %s: %s", path, strerror(errno)); + TH_LOG("Could not open %s: %s", path, strerror(errno)); } for (i = 0; i < position; i++) {
There is a spelling mistake in an error message. Fix it. Signed-off-by: Colin Ian King <colin.i.king@gmail.com> --- tools/testing/selftests/seccomp/seccomp_bpf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)