|
@@ -591,7 +591,7 @@ begin
|
|
{$ifdef FPC_UNALIGNED_FIXED}
|
|
{$ifdef FPC_UNALIGNED_FIXED}
|
|
if bufsize-bufidx>=sizeof(word) then
|
|
if bufsize-bufidx>=sizeof(word) then
|
|
begin
|
|
begin
|
|
- result:=Unaligned(pword(@buf[bufidx]))^;
|
|
|
|
|
|
+ result:=Unaligned(pword(@buf[bufidx])^);
|
|
inc(bufidx,sizeof(word));
|
|
inc(bufidx,sizeof(word));
|
|
end
|
|
end
|
|
else
|
|
else
|
|
@@ -614,7 +614,7 @@ begin
|
|
{$ifdef FPC_UNALIGNED_FIXED}
|
|
{$ifdef FPC_UNALIGNED_FIXED}
|
|
if bufsize-bufidx>=sizeof(longint) then
|
|
if bufsize-bufidx>=sizeof(longint) then
|
|
begin
|
|
begin
|
|
- result:=Unaligned(plongint(@buf[bufidx]))^;
|
|
|
|
|
|
+ result:=Unaligned(plongint(@buf[bufidx])^);
|
|
inc(bufidx,sizeof(longint));
|
|
inc(bufidx,sizeof(longint));
|
|
end
|
|
end
|
|
else
|
|
else
|