Skip to content
Snippets Groups Projects
Commit 923dbcf3 authored by jdh8d's avatar jdh8d
Browse files

screwed up a change to fix_calls

Former-commit-id: 0fd1f442408fa9a91471ccf5b1dd9d3bd491fcbd
parent e57284e7
No related branches found
No related tags found
No related merge requests found
......@@ -194,7 +194,7 @@ void fix_call(Instruction_t* insn, VariantIR_t *virp)
/* if the first byte isn't a call opcode, there's some odd prefixing and we aren't handling it.
* this comes up most frequently in a call gs:0x10 instruction where an override prefix specifes the gs: part.
*/
if( insn->GetDataBits()[0]!=0xff && insn->GetDataBits()[0]!=0xe8 && insn->GetDataBits()[0]!=0x9a )
if( (insn->GetDataBits()[0]!=(char)0xff) && (insn->GetDataBits()[0]!=(char)0xe8) && (insn->GetDataBits()[0]!=(char)0x9a) )
return;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment