diff options
author | Ian Moffett <ian@osmora.org> | 2025-02-21 13:15:10 -0500 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-02-21 13:26:21 -0500 |
commit | d7e2dc844666cf3f488fd69409640f1f8a9844d4 (patch) | |
tree | 2535df387fe0d21408c46ae4da81e7cc66432858 /sys/kern/init_main.c | |
parent | 5d7bb645345ff30124767289f3fa1b552df76cf1 (diff) |
kernel: Update kernel log style
Kernel logs must now all be lowercase for consistency. A new style
called Peripheral Description Notation (PDN) has also been introduced
to describe devices.
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'sys/kern/init_main.c')
-rw-r--r-- | sys/kern/init_main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/kern/init_main.c b/sys/kern/init_main.c index fe41453..1fb3418 100644 --- a/sys/kern/init_main.c +++ b/sys/kern/init_main.c @@ -55,7 +55,7 @@ start_init(void) execve_args.argv = argv; execve_args.envp = envp; if (execve(td, &execve_args) != 0) - panic("Failed to load init\n"); + panic("failed to load init\n"); } int |