summaryrefslogtreecommitdiff
path: root/src/arch/dalvik
diff options
context:
space:
mode:
Diffstat (limited to 'src/arch/dalvik')
-rw-r--r--src/arch/dalvik/operand.c7
-rw-r--r--src/arch/dalvik/register.c4
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);