diff options
author | Ian Moffett <ian@osmora.org> | 2024-05-27 09:02:17 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2024-05-27 09:02:17 -0400 |
commit | 4861d3ccf90d6f9e0671dde89223bf3c18d7ce7c (patch) | |
tree | 464d616f834a9de976031836164ef82898a6e879 /sys/kern | |
parent | c148bad910811232ae9c72a60cd7a2d45e6c1ca0 (diff) |
kernel: syslog: Fix typo in comment
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'sys/kern')
-rw-r--r-- | sys/kern/kern_syslog.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/kern/kern_syslog.c b/sys/kern/kern_syslog.c index 21b90af..7394e24 100644 --- a/sys/kern/kern_syslog.c +++ b/sys/kern/kern_syslog.c @@ -112,7 +112,7 @@ kprintf(const char *fmt, ...) struct timer tmr = {0}; /* - * If the first char is OMIT_TIMESTAMP, than we won't + * If the first char is OMIT_TIMESTAMP, then we won't * print out the timestamp. */ if (*fmt_p == OMIT_TIMESTAMP[0]) { |