diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2021-06-01 22:32:50 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2021-06-01 22:32:50 (GMT) |
commit | 9eab0a0903303d3c93872e7e4b6b1cb774b69b03 (patch) | |
tree | ae8594cae830118ca3a92ee60242490e58c14a9e /src/format | |
parent | 1865cce4d51b9c7a6fb718f4e2c034a57365ad1b (diff) |
Improve the code quality by renaming the type for packed buffers.
Diffstat (limited to 'src/format')
-rw-r--r-- | src/format/strsym.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/format/strsym.c b/src/format/strsym.c index aedd779..d5b9157 100644 --- a/src/format/strsym.c +++ b/src/format/strsym.c @@ -98,10 +98,10 @@ int g_string_symbol_compare(const GStrSymbol *, const GStrSymbol *); void g_string_symbol_print(const GStrSymbol *, GBufferLine *); /* Charge un fournisseur depuis une mémoire tampon. */ -bool g_string_symbol_unserialize(GStrSymbol *, GBinFormat *, packed_buffer *); +bool g_string_symbol_unserialize(GStrSymbol *, GBinFormat *, packed_buffer_t *); /* Sauvegarde un fournisseur dans une mémoire tampon. */ -bool g_string_symbol_serialize(const GStrSymbol *, packed_buffer *); +bool g_string_symbol_serialize(const GStrSymbol *, packed_buffer_t *); @@ -860,7 +860,7 @@ void g_string_symbol_print(const GStrSymbol *symbol, GBufferLine *line) * * ******************************************************************************/ -bool g_string_symbol_unserialize(GStrSymbol *symbol, GBinFormat *format, packed_buffer *pbuf) +bool g_string_symbol_unserialize(GStrSymbol *symbol, GBinFormat *format, packed_buffer_t *pbuf) { bool result; /* Bilan à retourner */ vmpa2t addr; /* Adresse à cibler */ @@ -885,7 +885,7 @@ bool g_string_symbol_unserialize(GStrSymbol *symbol, GBinFormat *format, packed_ * * ******************************************************************************/ -bool g_string_symbol_serialize(const GStrSymbol *symbol, packed_buffer *pbuf) +bool g_string_symbol_serialize(const GStrSymbol *symbol, packed_buffer_t *pbuf) { bool result; /* Bilan à retourner */ const mrange_t *range; /* Emplacement du symbole */ |