diff options
Diffstat (limited to 'src/arch/dalvik')
-rw-r--r-- | src/arch/dalvik/decomp/new.c | 2 | ||||
-rw-r--r-- | src/arch/dalvik/operands/pool.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/arch/dalvik/decomp/new.c b/src/arch/dalvik/decomp/new.c index 65da469..ff80411 100644 --- a/src/arch/dalvik/decomp/new.c +++ b/src/arch/dalvik/decomp/new.c @@ -49,7 +49,7 @@ GDecInstruction *dalvik_decomp_instr_new_instance(const GArchInstruction *instr, GArchOperand *operand; /* Opérande de l'instruction */ uint32_t index; /* Indice dans la table */ GDexFormat *format; /* Accès aux constantes */ - GOpenidaType *type; /* Type concerné par l'opérat° */ + GDataType *type; /* Type concerné par l'opérat° */ GBinRoutine *constructor; /* Constructeur reconstruit */ GDecInstruction *call; /* Appel au constructeur */ GDecInstruction *dest; /* Registre de destination */ diff --git a/src/arch/dalvik/operands/pool.c b/src/arch/dalvik/operands/pool.c index 7ec370c..803d173 100644 --- a/src/arch/dalvik/operands/pool.c +++ b/src/arch/dalvik/operands/pool.c @@ -180,7 +180,7 @@ GArchOperand *g_dalvik_pool_operand_new(const GDexFormat *format, DalvikPoolType static void g_dalvik_pool_operand_print(const GDalvikPoolOperand *operand, GBufferLine *line, AsmSyntax syntax) { const char *string; /* Chaîne de caractères #1 */ - GOpenidaType *type; /* Type à représenter */ + GDataType *type; /* Type à représenter */ char *tmp; /* Chaîne de caractères #2 */ GBinVariable *field; /* Champ à représenter */ GBinRoutine *routine; /* Routine à représenter */ @@ -203,7 +203,7 @@ static void g_dalvik_pool_operand_print(const GDalvikPoolOperand *operand, GBuff if (type != NULL) { - tmp = g_openida_type_to_string(type); + tmp = g_data_type_to_string(type); g_object_unref(G_OBJECT(type)); } else |