diff options
Diffstat (limited to 'src/arch/operands/immediate.c')
-rw-r--r-- | src/arch/operands/immediate.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/arch/operands/immediate.c b/src/arch/operands/immediate.c index 7ec5ebd..f99b421 100644 --- a/src/arch/operands/immediate.c +++ b/src/arch/operands/immediate.c @@ -67,7 +67,7 @@ static void g_immediate_operand_comparable_object_iface_init(GComparableObjectIn static void g_immediate_operand_hashable_object_iface_init(GHashableObjectInterface *); /* Procède à l'initialisation de l'interface de sérialisation. */ -static void g_immediate_operand_serializable_iface_init(GSerializableObjectInterface *); +static void g_immediate_operand_serializable_object_iface_init(GSerializableObjectInterface *); /* Procède à l'initialisation de l'interface d'exportation. */ static void g_immediate_operand_string_builder_iface_init(GStringBuilderInterface *, gpointer); @@ -139,7 +139,7 @@ static bool g_immediate_operand_to_string(const GStringBuilder *, unsigned int, G_DEFINE_TYPE_WITH_CODE(GImmediateOperand, g_immediate_operand, G_TYPE_ARCH_OPERAND, G_IMPLEMENT_INTERFACE(G_TYPE_COMPARABLE_OBJECT, g_immediate_operand_comparable_object_iface_init) G_IMPLEMENT_INTERFACE(G_TYPE_HASHABLE_OBJECT, g_immediate_operand_hashable_object_iface_init) - G_IMPLEMENT_INTERFACE(G_TYPE_SERIALIZABLE_OBJECT, g_immediate_operand_serializable_iface_init) + G_IMPLEMENT_INTERFACE(G_TYPE_SERIALIZABLE_OBJECT, g_immediate_operand_serializable_object_iface_init) G_IMPLEMENT_INTERFACE(G_TYPE_STRING_BUILDER, g_immediate_operand_string_builder_iface_init) G_IMPLEMENT_INTERFACE_IF_SYM(g_arch_operand_ui_get_type, g_immediate_operand_ui_arch_operand_ui_iface_init)); @@ -218,7 +218,7 @@ static void g_immediate_operand_hashable_object_iface_init(GHashableObjectInterf * * ******************************************************************************/ -static void g_immediate_operand_serializable_iface_init(GSerializableObjectInterface *iface) +static void g_immediate_operand_serializable_object_iface_init(GSerializableObjectInterface *iface) { iface->load = g_immediate_operand_load; iface->store = g_immediate_operand_store; |