diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2012-10-12 07:28:19 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2012-10-12 07:28:19 (GMT) |
commit | c7a14e50bd002e3922969e9bae7816753aefb073 (patch) | |
tree | cd098d2f92880705810dfdc353dad6ad1412b2c2 /src/arch/dalvik/operands | |
parent | 4a51f37982c2d5d358971e947d05786b939af88e (diff) |
Reorganized types definitions.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@267 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/arch/dalvik/operands')
-rw-r--r-- | src/arch/dalvik/operands/pool.c | 4 |
1 files changed, 2 insertions, 2 deletions
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 |