git: 029848334f85 - main - Address review feedback on a typo.
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 14 Nov 2023 21:11:33 UTC
The branch main has been updated by gnn: URL: https://cgit.FreeBSD.org/src/commit/?id=029848334f85e03895234db8b89f5544ffb6e720 commit 029848334f85e03895234db8b89f5544ffb6e720 Author: George V. Neville-Neil <gnn@FreeBSD.org> AuthorDate: 2023-11-14 21:09:18 +0000 Commit: George V. Neville-Neil <gnn@FreeBSD.org> CommitDate: 2023-11-14 21:09:50 +0000 Address review feedback on a typo. Reviewed by: jhb, gbe Differential Revision: <https://reviews.freebsd.org/D42096> --- share/examples/modules/skel.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/share/examples/modules/skel.c b/share/examples/modules/skel.c index fc99e13ab444..407cbee32e8a 100644 --- a/share/examples/modules/skel.c +++ b/share/examples/modules/skel.c @@ -59,7 +59,7 @@ skel_mod_event(module_t mod, int type, void *data) printf("SKEL module loading.\n"); return (0); case MOD_UNLOAD: - printf("SKEL module unloadin.\n"); + printf("SKEL module unloading.\n"); return (0); } return (EOPNOTSUPP);