about summary refs log tree commit diff stats
path: root/example/disasm/callback.py
diff options
context:
space:
mode:
authorCamille Mougey <commial@gmail.com>2018-02-03 11:28:29 +0100
committerGitHub <noreply@github.com>2018-02-03 11:28:29 +0100
commitd404b1803c09b61463845fe14feee5324cbdc051 (patch)
treeb1d4f1880fa369df292b6e5b865456a55c2f7e1f /example/disasm/callback.py
parent738f6c6a606b2bea9c8c5eebb093aa1d88240a20 (diff)
parent149c40453908e8552aeddcae013d5c48584f0f88 (diff)
downloadmiasm-d404b1803c09b61463845fe14feee5324cbdc051.tar.gz
miasm-d404b1803c09b61463845fe14feee5324cbdc051.zip
Merge pull request #670 from serpilliere/dis_block_callback
Asmblock: fix dis_block_callback
Diffstat (limited to 'example/disasm/callback.py')
-rw-r--r--example/disasm/callback.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/example/disasm/callback.py b/example/disasm/callback.py
index 63987e85..a9bef20b 100644
--- a/example/disasm/callback.py
+++ b/example/disasm/callback.py
@@ -52,7 +52,7 @@ print "\n".join(str(block) for block in blocks)
 # Enable callback
 cb_x86_funcs.append(cb_x86_callpop)
 ## Other method:
-## mdis.dis_bloc_callback = cb_x86_callpop
+## mdis.dis_block_callback = cb_x86_callpop
 
 print "=" * 40
 print "With callback:\n"