summaryrefslogtreecommitdiff
path: root/src/analysis/types/expr.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/analysis/types/expr.c')
-rw-r--r--src/analysis/types/expr.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/analysis/types/expr.c b/src/analysis/types/expr.c
index a98e039..b6f8168 100644
--- a/src/analysis/types/expr.c
+++ b/src/analysis/types/expr.c
@@ -62,10 +62,10 @@ static void g_expr_type_dispose(GExprType *);
static void g_expr_type_finalize(GExprType *);
/* Charge un objet depuis une mémoire tampon. */
-static bool g_expr_type_load(GExprType *, GObjectStorage *, packed_buffer *);
+static bool g_expr_type_load(GExprType *, GObjectStorage *, packed_buffer_t *);
/* Sauvegarde un objet dans une mémoire tampon. */
-static bool g_expr_type_store(const GExprType *, GObjectStorage *, packed_buffer *);
+static bool g_expr_type_store(const GExprType *, GObjectStorage *, packed_buffer_t *);
/* Calcule une empreinte pour un type de données. */
static guint g_expr_type_hash(const GExprType *);
@@ -215,7 +215,7 @@ GDataType *g_expr_type_new(const char *value)
* *
******************************************************************************/
-static bool g_expr_type_load(GExprType *type, GObjectStorage *storage, packed_buffer *pbuf)
+static bool g_expr_type_load(GExprType *type, GObjectStorage *storage, packed_buffer_t *pbuf)
{
bool result; /* Bilan à retourner */
uleb128_t value; /* Valeur ULEB128 à charger */
@@ -250,7 +250,7 @@ static bool g_expr_type_load(GExprType *type, GObjectStorage *storage, packed_bu
* *
******************************************************************************/
-static bool g_expr_type_store(const GExprType *type, GObjectStorage *storage, packed_buffer *pbuf)
+static bool g_expr_type_store(const GExprType *type, GObjectStorage *storage, packed_buffer_t *pbuf)
{
bool result; /* Bilan à retourner */
size_t len; /* Taille d'une chaîne */