diff options
Diffstat (limited to 'kernel/memory')
-rw-r--r-- | kernel/memory/memory.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kernel/memory/memory.c b/kernel/memory/memory.c index 208001b..2d560f4 100644 --- a/kernel/memory/memory.c +++ b/kernel/memory/memory.c @@ -51,15 +51,15 @@ mem_ctx_t mem_ctx_alloc(void) mem_ctx_t mem_ctx_clone(mem_ctx_t ctx, bool cow) { - (void) ctx; - (void) cow; + (void)ctx; + (void)cow; panic("not yet implemented"); } void mem_ctx_free(mem_ctx_t ctx) { - (void) ctx; + (void)ctx; panic("not yet implemented"); } |