summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlmuHS <almuhs@github.com>2019-06-26 17:07:21 +0200
committerAlmuHS <almuhs@github.com>2019-06-26 17:07:21 +0200
commit860c89424044bc1059984fa8089774f78a242e3b (patch)
tree007eb793bc926448d4ba8dc56dfb44907ca98aec
parent0f74ef03348896b3d3ab463b220fb64e425236b0 (diff)
debug fix: replace true to 1
-rw-r--r--kern/startup.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/kern/startup.c b/kern/startup.c
index 378ee798..b1791fcb 100644
--- a/kern/startup.c
+++ b/kern/startup.c
@@ -183,7 +183,7 @@ void setup_main(void)
(void) thread_create(kernel_task, &startup_thread);
thread_start(startup_thread, start_kernel_threads);
- while(true);
+ while(1);
/*
* Give it a kernel stack.