diff options
| author | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2019-03-26 15:17:22 +0100 |
|---|---|---|
| committer | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2019-03-27 12:30:46 +0100 |
| commit | 89a31947780bb584d8d082817fc77be5c30097af (patch) | |
| tree | 66eccad6d11138379242efbf423bcb0b5043e6a9 /miasm/jitter/vm_mngr_py.c | |
| parent | 183c3e35a699bddd776bdc04f795dd3ffb608ad2 (diff) | |
| download | focaccia-miasm-89a31947780bb584d8d082817fc77be5c30097af.tar.gz focaccia-miasm-89a31947780bb584d8d082817fc77be5c30097af.zip | |
Jitter: PyGetStr const char*
Diffstat (limited to 'miasm/jitter/vm_mngr_py.c')
| -rw-r--r-- | miasm/jitter/vm_mngr_py.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/miasm/jitter/vm_mngr_py.c b/miasm/jitter/vm_mngr_py.c index 381067a0..57494655 100644 --- a/miasm/jitter/vm_mngr_py.c +++ b/miasm/jitter/vm_mngr_py.c @@ -84,7 +84,7 @@ PyObject* vm_add_memory_page(VmMngr* self, PyObject* args) Py_ssize_t length; uint64_t page_addr; uint64_t page_access; - char* name_ptr; + const char *name_ptr; struct memory_page_node * mpn; |