diff options
| author | simonb <simonb@NetBSD.org> | 2021-03-23 13:19:09 +0000 |
|---|---|---|
| committer | simonb <simonb@NetBSD.org> | 2021-03-23 13:19:09 +0000 |
| commit | 4b0efe5197e5035d631b92d04ea1c209c238545c (patch) | |
| tree | 1930ccf05928d070808e74a0f9278e6da3ac92b5 /sys/modules/examples/sysctl/sysctl.c | |
| parent | 08251092cfc4de8bc38f3e3f99407a7d4736b241 (diff) | |
Add some \n's to the end of some printf()s.
Diffstat (limited to 'sys/modules/examples/sysctl/sysctl.c')
| -rw-r--r-- | sys/modules/examples/sysctl/sysctl.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/modules/examples/sysctl/sysctl.c b/sys/modules/examples/sysctl/sysctl.c index 2fced29f6c1..09d78b62cda 100644 --- a/sys/modules/examples/sysctl/sysctl.c +++ b/sys/modules/examples/sysctl/sysctl.c @@ -1,4 +1,4 @@ -/* $NetBSD: sysctl.c,v 1.1 2018/04/13 01:20:28 kamil Exp $ */ +/* $NetBSD: sysctl.c,v 1.2 2021/03/23 13:19:09 simonb Exp $ */ /*- * Copyright (c) 2018 The NetBSD Foundation, Inc. @@ -27,7 +27,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: sysctl.c,v 1.1 2018/04/13 01:20:28 kamil Exp $"); +__KERNEL_RCSID(0, "$NetBSD: sysctl.c,v 1.2 2021/03/23 13:19:09 simonb Exp $"); #include <sys/param.h> #include <sys/module.h> @@ -104,11 +104,11 @@ sysctl_modcmd(modcmd_t cmd, void *arg) { switch(cmd) { case MODULE_CMD_INIT: - printf("sysctl module inserted"); + printf("sysctl module inserted\n"); sysctl_example_setup(&example_sysctl_log); break; case MODULE_CMD_FINI: - printf("sysctl module unloaded"); + printf("sysctl module unloaded\n"); sysctl_teardown(&example_sysctl_log); break; default: |
