diff options
author | Freya Murphy <freya@freyacat.org> | 2025-04-10 23:29:33 -0400 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2025-04-10 23:29:33 -0400 |
commit | 4c1d03b082f4972c02f5794976f4651fc5f85795 (patch) | |
tree | 0301195d09650346c91bd530a2eef735f98aea86 /kernel/lib/panic.c | |
parent | make lib betterer (diff) | |
download | comus-4c1d03b082f4972c02f5794976f4651fc5f85795.tar.gz comus-4c1d03b082f4972c02f5794976f4651fc5f85795.tar.bz2 comus-4c1d03b082f4972c02f5794976f4651fc5f85795.zip |
fmt
Diffstat (limited to 'kernel/lib/panic.c')
-rw-r--r-- | kernel/lib/panic.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/kernel/lib/panic.c b/kernel/lib/panic.c index 486f4b5..dc62eb7 100644 --- a/kernel/lib/panic.c +++ b/kernel/lib/panic.c @@ -3,7 +3,8 @@ #include <stdarg.h> #include <comus/asm.h> -__attribute__((noreturn)) void __panic(const char *line, const char *file, const char *format, ...) +__attribute__((noreturn)) void __panic(const char *line, const char *file, + const char *format, ...) { cli(); va_list list; |