diff options
| author | serpilliere <serpilliere@users.noreply.github.com> | 2024-03-21 18:55:51 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-03-21 18:55:51 +0100 |
| commit | 319229f8675fb3d84655b1701a31eb9064560d3c (patch) | |
| tree | 0922fb71259227565dc308e198799ac8f61b4259 | |
| parent | 88432b04061920e77a393bb18ddbba70d2edca83 (diff) | |
| parent | 862b74a297e6d724c97b76d75b76c1cca541d952 (diff) | |
| download | miasm-319229f8675fb3d84655b1701a31eb9064560d3c.tar.gz miasm-319229f8675fb3d84655b1701a31eb9064560d3c.zip | |
Merge pull request #1473 from W0ni/patch-1
Remove misleading comment
| -rw-r--r-- | example/symbol_exec/symbol_exec.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/example/symbol_exec/symbol_exec.py b/example/symbol_exec/symbol_exec.py index 1d3f4576..f11f095a 100644 --- a/example/symbol_exec/symbol_exec.py +++ b/example/symbol_exec/symbol_exec.py @@ -54,5 +54,5 @@ cur_addr = symb.run_at(ircfg, addr, step=options.steps) # Modified elements print('Modified registers:') symb.dump(mems=False) -print('Modified memory (should be empty):') +print('Modified memory:') symb.dump(ids=False) |