From d59fd6700d106201686494663fb92032cb9888ed Mon Sep 17 00:00:00 2001 From: Ben Maurer Date: Mon, 6 Sep 2004 15:07:37 +0000 Subject: [PATCH] fix warning svn path=/trunk/mono/; revision=33415 --- mono/arch/x86/x86-codegen.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mono/arch/x86/x86-codegen.h b/mono/arch/x86/x86-codegen.h index 15c6fbfff45..b372bef1bc0 100644 --- a/mono/arch/x86/x86-codegen.h +++ b/mono/arch/x86/x86-codegen.h @@ -1345,7 +1345,7 @@ typedef union { #define x86_push_imm(inst,imm) \ do { \ - int _imm = (int) imm; \ + int _imm = (int) (imm); \ if (x86_is_imm8 (_imm)) { \ *(inst)++ = (unsigned char)0x6A; \ x86_imm_emit8 ((inst), (_imm)); \ -- 2.11.4.GIT