-
Notifications
You must be signed in to change notification settings - Fork 3.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
tools/memleak: Fixes explanations for -Z and -z options
These are the description of each options written in memleak.c file -z option: capture only allocations larger than this size -Z option: capture only allocations smaller than this size But actually they work like this -z option: capture only allocations larger than or equal to this size -Z option: capture only allocations smaller than or equal to this size Which means, there was off-by-one errors. So, fixes the explanation message.
- Loading branch information
Showing
2 changed files
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters