Skip to content

Commit

Permalink
Change language in leak detector
Browse files Browse the repository at this point in the history
  • Loading branch information
jart committed Dec 10, 2024
1 parent bda2a4d commit 22094ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libc/mem/leaks.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down

0 comments on commit 22094ae

Please sign in to comment.