This is an automated email from the ASF dual-hosted git repository.
simbit18 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/nuttx-apps.git
The following commit(s) were added to refs/heads/master by this push:
new 535ecd864 testing/libc/fopencookie/fopencookie.c: fix spellcheck
535ecd864 is described below
commit 535ecd864043574f427a365e2e66552c94a70ae0
Author: Michal Lenc <[email protected]>
AuthorDate: Mon Jun 29 08:31:36 2026 +0200
testing/libc/fopencookie/fopencookie.c: fix spellcheck
succesfull => successful
Signed-off-by: Michal Lenc <[email protected]>
---
testing/libc/fopencookie/fopencookie.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/testing/libc/fopencookie/fopencookie.c
b/testing/libc/fopencookie/fopencookie.c
index 46ce595fd..380c29803 100644
--- a/testing/libc/fopencookie/fopencookie.c
+++ b/testing/libc/fopencookie/fopencookie.c
@@ -171,7 +171,7 @@ static int fopencookie_write_test(FILE *stream)
}
printf("fopencookie_write_test: written buffer: %.*s\n", n, correctbuf);
- printf("fopencookie_write_test: succesfull\n");
+ printf("fopencookie_write_test: successful\n");
return 0;
}
@@ -202,7 +202,7 @@ static int fopencookie_read_test(FILE *stream)
}
printf("fopencookie_read_test: read buffer: %.*s\n", n, correctbuf);
- printf("fopencookie_read_test: succesfull\n");
+ printf("fopencookie_read_test: successful\n");
return 0;
}
@@ -240,7 +240,7 @@ static int fopencookie_seek_test(FILE *stream)
printf("fopencookie_seek_test: pos %d, char %c\n", i, buf[i]);
}
- printf("fopencookie_seek_test: succesfull\n");
+ printf("fopencookie_seek_test: successful\n");
fseek(stream, 0, SEEK_SET);
return 0;
@@ -301,7 +301,7 @@ int main(int argc, FAR char *argv[])
goto fopencookie_ret;
}
- printf("fopencokie tests were succesfull.\n");
+ printf("fopencokie tests were successful.\n");
fopencookie_ret:
fclose(stream);