diff options
| author | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2018-07-17 13:15:11 +0200 |
|---|---|---|
| committer | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2018-07-17 13:15:11 +0200 |
| commit | a2a8fa1c1d1c24a3975aec0a39fd1d9f0d31af5e (patch) | |
| tree | ab09ebc9178920803a2d9c4ee15ddbdd6d7211f9 /miasm2/core/cpu.py | |
| parent | c4974d42d44921dcfd3d4abb9b92160a2654c86e (diff) | |
| download | miasm-a2a8fa1c1d1c24a3975aec0a39fd1d9f0d31af5e.tar.gz miasm-a2a8fa1c1d1c24a3975aec0a39fd1d9f0d31af5e.zip | |
Cpu: fix tipo
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 |