summaryrefslogtreecommitdiff
path: root/src/arch/dalvik/operand.c
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2010-07-11 19:18:02 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2010-07-11 19:18:02 (GMT)
commit7b2a41d975056cec78f89a6892619cccbfe389d7 (patch)
tree31913765184b31b4d3465c2bb858c7511cd67e4f /src/arch/dalvik/operand.c
parentf38beea1951f9c323af3d05a3c4d2cf35f407245 (diff)
Typo.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@172 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/arch/dalvik/operand.c')
-rw-r--r--src/arch/dalvik/operand.c7
1 files changed, 4 insertions, 3 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. *
* *