diff options
author | Cleber Rosa <crosa@redhat.com> | 2018-10-04 12:18:50 -0400 |
---|---|---|
committer | Eduardo Habkost <ehabkost@redhat.com> | 2018-10-30 21:13:54 -0300 |
commit | cbcdf1a951aa605c43dc80a98a8cc366299e378c (patch) | |
tree | 65fbb5d172cd44b3ee5bb5dde57415a2a9528ea6 | |
parent | aa983ff67c365a91bdf819c89654d4e7afd5943d (diff) | |
download | qemu-cbcdf1a951aa605c43dc80a98a8cc366299e378c.zip |
scripts/decodetree.py: fix reference to attributes
Signed-off-by: Cleber Rosa <crosa@redhat.com>
Message-Id: <20181004161852.11673-9-crosa@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
-rwxr-xr-x | scripts/decodetree.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/decodetree.py b/scripts/decodetree.py index 457cffea90..37c76b5507 100755 --- a/scripts/decodetree.py +++ b/scripts/decodetree.py @@ -298,7 +298,7 @@ class Field: s = 's' else: s = '' - return str(pos) + ':' + s + str(len) + return str(self.pos) + ':' + s + str(self.len) def str_extract(self): if self.sign: |