diff options
| author | serpilliere <serpilliere@users.noreply.github.com> | 2015-03-30 19:09:03 +0200 |
|---|---|---|
| committer | serpilliere <serpilliere@users.noreply.github.com> | 2015-03-30 19:09:03 +0200 |
| commit | 65c65bd7548fd665ca2631db4b91eb136aa5962c (patch) | |
| tree | 64a31b9f881907f34d2faad8d7fde82c435c0412 /miasm2/arch/sh4/arch.py | |
| parent | f72d0de75c6815db54f9d54824e8948d962eee5a (diff) | |
| parent | 37eb0a3d29434383a469f252975e1e3e1bd0309f (diff) | |
| download | miasm-65c65bd7548fd665ca2631db4b91eb136aa5962c.tar.gz miasm-65c65bd7548fd665ca2631db4b91eb136aa5962c.zip | |
Merge pull request #133 from commial/lazy-logging
Remove lazy logging pattern
Diffstat (limited to 'miasm2/arch/sh4/arch.py')
| -rw-r--r-- | miasm2/arch/sh4/arch.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/miasm2/arch/sh4/arch.py b/miasm2/arch/sh4/arch.py index f6bf809c..a102a37b 100644 --- a/miasm2/arch/sh4/arch.py +++ b/miasm2/arch/sh4/arch.py @@ -449,7 +449,7 @@ class instruction_sh4(instruction): if self.offset is None: raise ValueError('symbol not resolved %s' % l) if not isinstance(e, ExprInt): - log.debug('dyn dst %r' % e) + log.debug('dyn dst %r', e) return off = e.arg - (self.offset + 4 + self.l) print hex(off) |