diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2010-07-11 19:18:02 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2010-07-11 19:18:02 (GMT) |
commit | 7b2a41d975056cec78f89a6892619cccbfe389d7 (patch) | |
tree | 31913765184b31b4d3465c2bb858c7511cd67e4f /src/arch/dalvik | |
parent | f38beea1951f9c323af3d05a3c4d2cf35f407245 (diff) |
Typo.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@172 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/arch/dalvik')
-rw-r--r-- | src/arch/dalvik/operand.c | 7 | ||||
-rw-r--r-- | src/arch/dalvik/register.c | 4 |
2 files changed, 6 insertions, 5 deletions
diff --git a/src/arch/dalvik/operand.c b/src/arch/dalvik/operand.c index 2b64a10..f6f654e 100644 --- a/src/arch/dalvik/operand.c +++ b/src/arch/dalvik/operand.c @@ -66,9 +66,9 @@ static void g_dalvik_operand_init(GDalvikOperand *); /* Définition d'un opérande visant un registre Dalvik (instance) */ struct _GDalvikRegisterOperand { - GDalvikOperand parent; /* Instance parente */ + GDalvikOperand parent; /* Instance parente */ - GDalvikRegister *reg; /* Registre représenté */ + GDalvikRegister *reg; /* Registre représenté */ }; @@ -76,7 +76,7 @@ struct _GDalvikRegisterOperand /* Définition d'un opérande visant un registre Dalvik (classe) */ struct _GDalvikRegisterOperandClass { - GDalvikOperandClass parent; /* Classe parente */ + GDalvikOperandClass parent; /* Classe parente */ }; @@ -1404,6 +1404,7 @@ static bool dalvik_read_fixed_operands(GArchInstruction *instr, const bin_t *dat * len = taille totale des données à analyser. * * endian = boutisme lié au binaire accompagnant. * * model = type d'opérandes attendues. * +* ... = éventuelles données complémentaires. * * * * Description : Procède à la lecture d'opérandes pour une instruction. * * * diff --git a/src/arch/dalvik/register.c b/src/arch/dalvik/register.c index 78b5166..fc7757d 100644 --- a/src/arch/dalvik/register.c +++ b/src/arch/dalvik/register.c @@ -31,7 +31,7 @@ -//* Représentation d'un registre Dalvik (instance) */ +/* Représentation d'un registre Dalvik (instance) */ struct _GDalvikRegister { GArchOperand parent; /* Instance parente */ @@ -123,7 +123,7 @@ static void g_dalvik_register_init(GDalvikRegister *reg) GDalvikRegister *g_dalvik_register_new(uint16_t index) { - GDalvikRegister *result; /* Structure à retourner */ + GDalvikRegister *result; /* Structure à retourner */ result = g_object_new(G_TYPE_DALVIK_REGISTER, NULL); |