diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2025-03-28 04:50:02 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2025-03-28 04:50:02 (GMT) |
commit | 70ed4dc99c75c13797b41164959c753ffbc4572b (patch) | |
tree | 8bec4c31b19e732ec20d778434404ad96a059a67 /src/arch/operands/register.c | |
parent | 41f0c0f9089ec941ceb70e2a6ad1b958483eb2ae (diff) |
Perform small code updates for operands.
Diffstat (limited to 'src/arch/operands/register.c')
-rw-r--r-- | src/arch/operands/register.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/arch/operands/register.c b/src/arch/operands/register.c index 07e35c4..cad2c4e 100644 --- a/src/arch/operands/register.c +++ b/src/arch/operands/register.c @@ -48,7 +48,7 @@ static void g_register_operand_comparable_object_iface_init(GComparableObjectInt static void g_register_operand_hashable_object_iface_init(GHashableObjectInterface *); /* Procède à l'initialisation de l'interface de sérialisation. */ -static void g_register_operand_serializable_iface_init(GSerializableObjectInterface *); +static void g_register_operand_serializable_object_iface_init(GSerializableObjectInterface *); /* Procède à l'initialisation de l'interface d'exportation. */ static void g_register_operand_string_builder_iface_init(GStringBuilderInterface *); @@ -108,7 +108,7 @@ static bool g_register_operand_to_string(const GStringBuilder *, unsigned int, s G_DEFINE_TYPE_WITH_CODE(GRegisterOperand, g_register_operand, G_TYPE_ARCH_OPERAND, G_IMPLEMENT_INTERFACE(G_TYPE_COMPARABLE_OBJECT, g_register_operand_comparable_object_iface_init) G_IMPLEMENT_INTERFACE(G_TYPE_HASHABLE_OBJECT, g_register_operand_hashable_object_iface_init) - G_IMPLEMENT_INTERFACE(G_TYPE_SERIALIZABLE_OBJECT, g_register_operand_serializable_iface_init) + G_IMPLEMENT_INTERFACE(G_TYPE_SERIALIZABLE_OBJECT, g_register_operand_serializable_object_iface_init) G_IMPLEMENT_INTERFACE(G_TYPE_STRING_BUILDER, g_register_operand_string_builder_iface_init) G_IMPLEMENT_INTERFACE_IF_SYM(g_arch_operand_ui_get_type, g_register_operand_ui_arch_operand_ui_iface_init)); @@ -187,7 +187,7 @@ static void g_register_operand_hashable_object_iface_init(GHashableObjectInterfa * * ******************************************************************************/ -static void g_register_operand_serializable_iface_init(GSerializableObjectInterface *iface) +static void g_register_operand_serializable_object_iface_init(GSerializableObjectInterface *iface) { iface->load = g_register_operand_load; iface->store = g_register_operand_store; |