diff options
| author | Camille Mougey <commial@gmail.com> | 2018-07-18 19:04:06 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-07-18 19:04:06 +0200 |
| commit | 63edfb9952969263f284b236678fbf93f81e6ac0 (patch) | |
| tree | 43d5a897a95b1429bd9382d6ff689ce14ac234c7 /miasm2/core/cpu.py | |
| parent | b531a52db0a966f0882e386e164a349ae581f956 (diff) | |
| parent | 3b146b53c4b6ec12806b670eb215bb44482642e1 (diff) | |
| download | miasm-63edfb9952969263f284b236678fbf93f81e6ac0.tar.gz miasm-63edfb9952969263f284b236678fbf93f81e6ac0.zip | |
Merge pull request #802 from serpilliere/fix_x86_asm_64
X86: fix 64 bit asm
Diffstat (limited to 'miasm2/core/cpu.py')
| -rw-r--r-- | miasm2/core/cpu.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/miasm2/core/cpu.py b/miasm2/core/cpu.py index 1326d08b..686e12ba 100644 --- a/miasm2/core/cpu.py +++ b/miasm2/core/cpu.py @@ -1036,7 +1036,7 @@ class instruction(object): offset = symbols.get_location_offset(loc_key) if offset is None: raise ValueError( - 'The offset of loc_key "%s" cannot be determined' % name + 'The offset of loc_key "%s" cannot be determined' % names ) else: # Fix symbol with its offset |