diff options
author | Lizzy Fleckenstein <eliasfleckenstein@web.de> | 2023-11-27 20:03:41 +0100 |
---|---|---|
committer | Lizzy Fleckenstein <eliasfleckenstein@web.de> | 2023-11-27 20:03:41 +0100 |
commit | 0c1d5e64c32f9e35264910d6defb693829df6f52 (patch) | |
tree | 042b3ae06da8af4e8cbd3babdfa9702c67517ef6 /stage3/halt.c | |
parent | 8b9f33dd745ebba0e819927ab3906635bfb3bf34 (diff) | |
download | cuddles-0c1d5e64c32f9e35264910d6defb693829df6f52.tar.xz |
font fixes
Diffstat (limited to 'stage3/halt.c')
-rw-r--r-- | stage3/halt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stage3/halt.c b/stage3/halt.c index d4d0f64..39bc3c9 100644 --- a/stage3/halt.c +++ b/stage3/halt.c @@ -9,6 +9,6 @@ void halt() void panic(char *msg) { - println(msg); + print(msg); halt(); } |