mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-10 22:16:17 +02:00
lazutils: less warnings
git-svn-id: trunk@41184 -
This commit is contained in:
parent
6b007f92db
commit
5878ba9053
@ -733,7 +733,7 @@ const
|
||||
L1 := pEC^.code^[pEC^.IP]; inc(pEC^.IP);
|
||||
L0 := pEC^.code^[pEC^.IP]; inc(pEC^.IP);
|
||||
if L1 >= 128 then
|
||||
result := -32768 + ((L1 and 127) shl 8) + L0
|
||||
result := Short(-32768) + (Short(L1 and 127) shl 8) + L0
|
||||
else
|
||||
result := (L1 shl 8) + L0;
|
||||
end;
|
||||
|
Loading…
Reference in New Issue
Block a user