From 22094ae9caf4e57b2feb0ce270868643926c114c Mon Sep 17 00:00:00 2001 From: Justine Tunney Date: Tue, 10 Dec 2024 11:04:35 -0800 Subject: [PATCH] Change language in leak detector --- libc/mem/leaks.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libc/mem/leaks.c b/libc/mem/leaks.c index 8c7ac7f9d..3fa67773a 100644 --- a/libc/mem/leaks.c +++ b/libc/mem/leaks.c @@ -87,7 +87,7 @@ void CheckForMemoryLeaks(void) { // check for leaks malloc_inspect_all(visitor, 0); if (leak_count) { - kprintf("loser: you forgot to call free %'d time%s\n", leak_count, + kprintf("you forgot to call free %'d time%s\n", leak_count, leak_count == 1 ? "" : "s"); _exit(73); }