diff options
author | sotech117 <michael_foiani@brown.edu> | 2024-04-25 04:04:20 +0000 |
---|---|---|
committer | sotech117 <michael_foiani@brown.edu> | 2024-04-25 04:04:20 +0000 |
commit | 88db52baebd10ab1c2643f214ab9d44edcdb0851 (patch) | |
tree | f365ba758acd1bf164429cfbc02790e0ebbf8a79 /kernel/util/debug.c | |
parent | a3e64ef2bf31dda9a94db011a96651de918ea968 (diff) |
fix refcount issue
Diffstat (limited to 'kernel/util/debug.c')
-rw-r--r-- | kernel/util/debug.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/util/debug.c b/kernel/util/debug.c index ba38c24..027c05f 100644 --- a/kernel/util/debug.c +++ b/kernel/util/debug.c @@ -19,7 +19,7 @@ * always be the first thing in this variable. Note that this setting can be * changed at runtime by modifying the dbg_modes global variable. */ -#define INIT_DBG_MODES "-all,test,print,disk" +#define INIT_DBG_MODES "-all,test,print" /* Below is a truly terrible poll-driven serial driver that we use for debugging * purposes - it outputs to COM1, but |