summaryrefslogtreecommitdiff
path: root/src/arch/instruction.h
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2017-03-07 20:52:48 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2017-03-07 20:52:48 (GMT)
commitc0b4029475158f16f683e4c46a86b28f7a146a1c (patch)
treea49704dd793189094b3d6cefd90d7f06e6a7cc14 /src/arch/instruction.h
parent12b8a066d1d8dd8cbef587dc6fafed870604f49f (diff)
Created arrays with low memory footprint.
Diffstat (limited to 'src/arch/instruction.h')
-rw-r--r--src/arch/instruction.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/arch/instruction.h b/src/arch/instruction.h
index fad6c72..9299f8c 100644
--- a/src/arch/instruction.h
+++ b/src/arch/instruction.h
@@ -147,7 +147,7 @@ size_t _g_arch_instruction_count_operands(const GArchInstruction *);
GArchOperand *_g_arch_instruction_get_operand(const GArchInstruction *, size_t);
/* Remplace un opérande d'une instruction par un autre. */
-void _g_arch_instruction_replace_operand(GArchInstruction *, GArchOperand *, const GArchOperand *);
+void _g_arch_instruction_replace_operand(GArchInstruction *, GArchOperand *, GArchOperand *);
/* Détache un opérande liée d'une instruction. */
void _g_arch_instruction_detach_operand(GArchInstruction *, GArchOperand *);