diff options
| author | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2018-03-28 14:26:16 +0200 |
|---|---|---|
| committer | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2018-03-28 14:26:16 +0200 |
| commit | 719266807687e0a9a5b4f194d7c2220974a2e83f (patch) | |
| tree | a51177894ea3a989919d31b875b3bbd6cb5a1c39 /miasm2/jitter/vm_mngr_py.c | |
| parent | 50a0b480a729507c8e49af39588592fbfb5476b1 (diff) | |
| download | miasm-719266807687e0a9a5b4f194d7c2220974a2e83f.tar.gz miasm-719266807687e0a9a5b4f194d7c2220974a2e83f.zip | |
Fix memory breakpoint name
Diffstat (limited to 'miasm2/jitter/vm_mngr_py.c')
| -rw-r--r-- | miasm2/jitter/vm_mngr_py.c | 2 |
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 */ }; |