aboutsummaryrefslogtreecommitdiff
path: root/py/asmx86.c
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2015-11-27 14:06:53 +0000
committerDamien George <damien.p.george@gmail.com>2015-11-27 14:06:53 +0000
commit0786716c5a9b352f24bb3e3386515ae3298942e7 (patch)
tree1aa771ce828a901da49eca52397fee313f3642dd /py/asmx86.c
parent7a5a4fe271d87c8331356673bf91416092f1edc2 (diff)
py/asmx86: Fix function definition to use int32_t instead of int.
Diffstat (limited to 'py/asmx86.c')
-rw-r--r--py/asmx86.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/py/asmx86.c b/py/asmx86.c
index 25f0db885..40958826f 100644
--- a/py/asmx86.c
+++ b/py/asmx86.c
@@ -305,7 +305,7 @@ void asm_x86_mov_i8_to_r8(asm_x86_t *as, int src_i8, int dest_r32) {
}
#endif
-void asm_x86_mov_i32_to_r32(asm_x86_t *as, int src_i32, int dest_r32) {
+void asm_x86_mov_i32_to_r32(asm_x86_t *as, int32_t src_i32, int dest_r32) {
asm_x86_write_byte_1(as, OPCODE_MOV_I32_TO_R32 | dest_r32);
asm_x86_write_word32(as, src_i32);
}