From 4057e775120cd98b8dcf0be83cb8d2228d00c7a4 Mon Sep 17 00:00:00 2001 From: Max Wash Date: Wed, 1 Apr 2026 18:45:45 +0100 Subject: [PATCH] libc: remove log message from __libc_init --- lib/libc/core/sys/x86_64/init.c | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/libc/core/sys/x86_64/init.c b/lib/libc/core/sys/x86_64/init.c index cff8c9a..f9082c0 100644 --- a/lib/libc/core/sys/x86_64/init.c +++ b/lib/libc/core/sys/x86_64/init.c @@ -13,6 +13,5 @@ void *__attribute__((weak)) pthread_self(void) int __libc_init(const struct rosetta_bootstrap *bsinfo) { (volatile void)pthread_self(); - kern_logf("bsinfo = %p", bsinfo); return 0; }