Skip to content

Commit c88bd23

Browse files
committed
crt: Remove unnecessary printf
1 parent 2cfd60d commit c88bd23

2 files changed

Lines changed: 1 addition & 2 deletions

File tree

src/chainloader.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#include <multiboot.h>
66
#include <elf.h>
77

8-
#define DEBUG
8+
//#define DEBUG
99
#ifdef DEBUG
1010
#define PRINT(X,...) kprintf(X,##__VA_ARGS__);
1111
#else

src/crt/c_abi.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ void __init_stdlib(uint32_t mb_magic, uint32_t mb_addr)
3939

4040
// 2. find end of multiboot areas
4141
void* free_begin = multiboot_free_begin(mb_addr);
42-
kprintf("Multiboot end: %p\n", free_begin);
4342

4443
// 3. initialize heap (malloc, etc.)
4544
extern void __init_heap(void*);

0 commit comments

Comments
 (0)