diff options
| author | Florian Fischer <florian.fl.fischer@fau.de> | 2020-05-14 12:18:10 +0200 |
|---|---|---|
| committer | Florian Fischer <florian.fl.fischer@fau.de> | 2020-05-14 12:18:10 +0200 |
| commit | 4c3162b332e2dbccb089a667a358d03c85a40826 (patch) | |
| tree | 350fbdf76c34ad2a30b8e20c66bcf40bfffc87de /chattyparser.py | |
| parent | 1a09b144eb18919014ecf86da3442344b0eaa5b2 (diff) | |
| download | chattymalloc-4c3162b332e2dbccb089a667a358d03c85a40826.tar.gz chattymalloc-4c3162b332e2dbccb089a667a358d03c85a40826.zip | |
chattyparser.py: remove depth from Trace __str__
Diffstat (limited to 'chattyparser.py')
| -rwxr-xr-x | chattyparser.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chattyparser.py b/chattyparser.py index c51e2bc..50cbcd2 100755 --- a/chattyparser.py +++ b/chattyparser.py @@ -75,7 +75,7 @@ class Trace: var_arg = hex(self.var_arg) else: var_arg = self.var_arg - return f"{self.tid}: {self.depth} {self.func.name} {hex(self.ptr)} {self.size} {var_arg}" + return f"{self.tid}: {self.func.name} {hex(self.ptr)} {self.size} {var_arg}" def update_cache_lines(cache_lines, trace, size): """mark or unmark all cache lines spanned by this allocation""" |
