summaryrefslogtreecommitdiff
path: root/src/analysis/types/array.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/analysis/types/array.c')
-rw-r--r--src/analysis/types/array.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/analysis/types/array.c b/src/analysis/types/array.c
index 5b51d62..bc3382b 100644
--- a/src/analysis/types/array.c
+++ b/src/analysis/types/array.c
@@ -73,10 +73,10 @@ static void g_array_type_dispose(GArrayType *);
static void g_array_type_finalize(GArrayType *);
/* Charge un objet depuis une mémoire tampon. */
-static bool g_array_type_load(GArrayType *, GObjectStorage *, packed_buffer *);
+static bool g_array_type_load(GArrayType *, GObjectStorage *, packed_buffer_t *);
/* Sauvegarde un objet dans une mémoire tampon. */
-static bool g_array_type_store(const GArrayType *, GObjectStorage *, packed_buffer *);
+static bool g_array_type_store(const GArrayType *, GObjectStorage *, packed_buffer_t *);
/* Calcule une empreinte pour un type de données. */
static guint g_array_type_hash(const GArrayType *);
@@ -230,7 +230,7 @@ GDataType *g_array_type_new(GDataType *members)
* *
******************************************************************************/
-static bool g_array_type_load(GArrayType *type, GObjectStorage *storage, packed_buffer *pbuf)
+static bool g_array_type_load(GArrayType *type, GObjectStorage *storage, packed_buffer_t *pbuf)
{
bool result; /* Bilan à retourner */
bool numbered; /* Choix de la dimension */
@@ -288,7 +288,7 @@ static bool g_array_type_load(GArrayType *type, GObjectStorage *storage, packed_
* *
******************************************************************************/
-static bool g_array_type_store(const GArrayType *type, GObjectStorage *storage, packed_buffer *pbuf)
+static bool g_array_type_store(const GArrayType *type, GObjectStorage *storage, packed_buffer_t *pbuf)
{
bool result; /* Bilan à retourner */
size_t len; /* Taille d'une chaîne */