about summary refs log tree commit diff stats
path: root/miasm2/analysis/debugging.py
diff options
context:
space:
mode:
authorCamille Mougey <commial@gmail.com>2018-03-28 15:22:51 +0200
committerGitHub <noreply@github.com>2018-03-28 15:22:51 +0200
commit5b07d8c8828bdaba0c9a4ce63e978441d5dab525 (patch)
treeaa61c08b6da9a914c0ec5d4f0a516d6f365d5da3 /miasm2/analysis/debugging.py
parent92e508bc505fc8c23cc2a50ee6abfb03ccfa3ce4 (diff)
parent719266807687e0a9a5b4f194d7c2220974a2e83f (diff)
downloadmiasm-5b07d8c8828bdaba0c9a4ce63e978441d5dab525.tar.gz
miasm-5b07d8c8828bdaba0c9a4ce63e978441d5dab525.zip
Merge pull request #707 from serpilliere/fix_bp_memory_name
Fix memory breakpoint name
Diffstat (limited to '')
-rw-r--r--miasm2/analysis/debugging.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/miasm2/analysis/debugging.py b/miasm2/analysis/debugging.py
index d970f848..fc03eb17 100644
--- a/miasm2/analysis/debugging.py
+++ b/miasm2/analysis/debugging.py
@@ -87,7 +87,7 @@ class Debugguer(object):
         self.myjit.add_breakpoint(addr, func)
 
     def init_memory_breakpoint(self):
-        "Set exception handler on EXCEPT_BREAKPOINT_INTERN"
+        "Set exception handler on EXCEPT_BREAKPOINT_MEMORY"
         raise NotImplementedError("Not implemented")
 
     def add_memory_breakpoint(self, addr, size, read=False, write=False):