about summary refs log tree commit diff stats
path: root/miasm2/jitter/vm_mngr_py.c
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/jitter/vm_mngr_py.c
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/jitter/vm_mngr_py.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/miasm2/jitter/vm_mngr_py.c b/miasm2/jitter/vm_mngr_py.c
index fa69fab5..24f9dd9a 100644
--- a/miasm2/jitter/vm_mngr_py.c
+++ b/miasm2/jitter/vm_mngr_py.c
@@ -679,7 +679,7 @@ static PyMethodDef VmMngr_methods[] = {
 	{"check_invalid_code_blocs",(PyCFunction)vm_check_invalid_code_blocs, METH_VARARGS,
 	 "check_invalid_code_blocs() -> Set the AUTOMOD flag in exception in case of automodified code"},
 	{"check_memory_breakpoint",(PyCFunction)vm_check_memory_breakpoint, METH_VARARGS,
-	 "check_memory_breakpoint() -> Set the BREAKPOINT_INTERN flag in exception in case of memory breakpoint occurred"},
+	 "check_memory_breakpoint() -> Set the BREAKPOINT_MEMORY flag in exception in case of memory breakpoint occurred"},
 
 	{NULL}  /* Sentinel */
 };