summaryrefslogtreecommitdiff
path: root/plugins/pychrysalide/analysis/storage/tpmem.c
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/pychrysalide/analysis/storage/tpmem.c')
-rw-r--r--plugins/pychrysalide/analysis/storage/tpmem.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/pychrysalide/analysis/storage/tpmem.c b/plugins/pychrysalide/analysis/storage/tpmem.c
index 2cf659f..8df20b2 100644
--- a/plugins/pychrysalide/analysis/storage/tpmem.c
+++ b/plugins/pychrysalide/analysis/storage/tpmem.c
@@ -241,7 +241,7 @@ static PyObject *py_type_memory_read_types(PyObject *self, PyObject *args)
static PyObject *py_type_memory_create_object(PyObject *self, PyObject *args)
{
PyObject *result; /* Instance à retourner */
- packed_buffer *pbuf; /* Tampon à consulter */
+ packed_buffer_t *pbuf; /* Tampon à consulter */
int ret; /* Bilan de lecture des args. */
GTypeMemory *tpmem; /* Mémorisation native */
GObject *obj; /* Instance retournée */
@@ -290,7 +290,7 @@ static PyObject *py_type_memory_store_object_gtype(PyObject *self, PyObject *arg
{
PyObject *result; /* Bilan à retourner */
GObject *obj; /* Instance à traiter */
- packed_buffer *pbuf; /* Tampon à consulter */
+ packed_buffer_t *pbuf; /* Tampon à consulter */
int ret; /* Bilan de lecture des args. */
GTypeMemory *tpmem; /* Mémorisation native */
bool status; /* Bilan de l'opération */