diff options
| author | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2019-01-17 07:30:56 +0100 |
|---|---|---|
| committer | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2019-01-17 08:57:31 +0100 |
| commit | 5fcbef659dd5d27d2953e8f35ebe004655b3f183 (patch) | |
| tree | 79093188e4172955d310bff9f2c26998e5aac42f /miasm2/ir/symbexec_types.py | |
| parent | 04f2665bdc67dc350f469841c748542c70ea9747 (diff) | |
| download | miasm-5fcbef659dd5d27d2953e8f35ebe004655b3f183.tar.gz miasm-5fcbef659dd5d27d2953e8f35ebe004655b3f183.zip | |
Fix bad english
Diffstat (limited to 'miasm2/ir/symbexec_types.py')
| -rw-r--r-- | miasm2/ir/symbexec_types.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/miasm2/ir/symbexec_types.py b/miasm2/ir/symbexec_types.py index 7580d1f8..71e5d6fa 100644 --- a/miasm2/ir/symbexec_types.py +++ b/miasm2/ir/symbexec_types.py @@ -95,7 +95,7 @@ class SymbExecCType(SymbolicExecutionEngine): elif isinstance(dst, ExprId): pool_out[dst] = frozenset(objcs) else: - raise ValueError("Unsupported affectation", str(dst)) + raise ValueError("Unsupported assignment", str(dst)) return pool_out def eval_expr(self, expr, eval_cache=None): |