summaryrefslogtreecommitdiff
path: root/src/analysis/types/literal.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/analysis/types/literal.c')
-rw-r--r--src/analysis/types/literal.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/analysis/types/literal.c b/src/analysis/types/literal.c
index 4529411..04b941f 100644
--- a/src/analysis/types/literal.c
+++ b/src/analysis/types/literal.c
@@ -65,10 +65,10 @@ static void g_literal_type_dispose(GLiteralType *);
static void g_literal_type_finalize(GLiteralType *);
/* Charge un objet depuis une mémoire tampon. */
-static bool g_literal_type_load(GLiteralType *, GObjectStorage *, packed_buffer *);
+static bool g_literal_type_load(GLiteralType *, GObjectStorage *, packed_buffer_t *);
/* Sauvegarde un objet dans une mémoire tampon. */
-static bool g_literal_type_store(const GLiteralType *, GObjectStorage *, packed_buffer *);
+static bool g_literal_type_store(const GLiteralType *, GObjectStorage *, packed_buffer_t *);
/* Calcule une empreinte pour un type de données. */
static guint g_literal_type_hash(const GLiteralType *);
@@ -226,7 +226,7 @@ GDataType *g_literal_type_new(GDataType *orig, const literal_value *value)
* *
******************************************************************************/
-static bool g_literal_type_load(GLiteralType *type, GObjectStorage *storage, packed_buffer *pbuf)
+static bool g_literal_type_load(GLiteralType *type, GObjectStorage *storage, packed_buffer_t *pbuf)
{
bool result; /* Bilan à retourner */
@@ -263,7 +263,7 @@ static bool g_literal_type_load(GLiteralType *type, GObjectStorage *storage, pac
* *
******************************************************************************/
-static bool g_literal_type_store(const GLiteralType *type, GObjectStorage *storage, packed_buffer *pbuf)
+static bool g_literal_type_store(const GLiteralType *type, GObjectStorage *storage, packed_buffer_t *pbuf)
{
bool result; /* Bilan à retourner */