Change language in leak detector

This commit is contained in:
Justine Tunney 2024-12-10 11:04:35 -08:00
parent bda2a4d55e
commit 22094ae9ca
No known key found for this signature in database
GPG key ID: BE714B4575D6E328

View file

@ -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);
}