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