Skip to content

Commit

Permalink
Update src/Neo.Compiler.MSIL/MSIL/Converter.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
shargon committed Apr 30, 2020
1 parent 5f97e0a commit 0ffbe6a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Neo.Compiler.MSIL/MSIL/Converter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -381,7 +381,7 @@ private void ConvertAddrInMethod(NeoMethod to)
try
{
var _addr = addrconv[c.srcaddr];
Int32 addroff = (Int32)(_addr - c.addr);
int addroff = (int)(_addr - c.addr);
c.bytes = BitConverter.GetBytes(addroff);
c.needfix = false;
}
Expand Down

0 comments on commit 0ffbe6a

Please sign in to comment.