summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2012-10-12 07:28:19 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2012-10-12 07:28:19 (GMT)
commitc7a14e50bd002e3922969e9bae7816753aefb073 (patch)
treecd098d2f92880705810dfdc353dad6ad1412b2c2 /plugins
parent4a51f37982c2d5d358971e947d05786b939af88e (diff)
Reorganized types definitions.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@267 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'plugins')
-rw-r--r--plugins/dexresolver/operand.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/dexresolver/operand.c b/plugins/dexresolver/operand.c
index 17adaf6..7293599 100644
--- a/plugins/dexresolver/operand.c
+++ b/plugins/dexresolver/operand.c
@@ -205,7 +205,7 @@ static void g_dalvik_hpool_operand_to_buffer(/*const */GDalvikHPoolOperand *oper
GContentExporter *exporter; /* Autre vision de l'opérande */
uint32_t index; /* Indice de l'élément visé */
const char *string; /* Chaîne à afficher */
- GOpenidaType *type; /* Type quelconque */
+ GDataType *type; /* Type quelconque */
char *tmp; /* Chaîne à afficher & libérer */
exporter = G_CONTENT_EXPORTER(operand);
@@ -248,7 +248,7 @@ static void g_dalvik_hpool_operand_to_buffer(/*const */GDalvikHPoolOperand *oper
else
{
type = g_binary_variable_get_vtype(operand->cache.field);
- tmp = g_openida_type_to_string(type);
+ tmp = g_data_type_to_string(type);
g_content_exporter_insert_into_buffer(exporter, buffer, BLC_ASSEMBLY,
tmp, strlen(tmp), RTT_VAR_NAME);