mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-18 18:19:08 +02:00
* x86_64 fix: Conversion if integer to pointer
git-svn-id: trunk@6395 -
This commit is contained in:
parent
7526717aef
commit
529d872aea
@ -307,7 +307,7 @@ var
|
|||||||
For I := 1 to Length(Source) do
|
For I := 1 to Length(Source) do
|
||||||
If Source[I] = ' ' then
|
If Source[I] = ' ' then
|
||||||
If not Breakable(Result, I) then
|
If not Breakable(Result, I) then
|
||||||
Result.Add(Pointer(I));
|
Result.Add(Pointer(PtrInt(I)));
|
||||||
If not Breakable(Result, Length(Source)) then
|
If not Breakable(Result, Length(Source)) then
|
||||||
Result.Add(Pointer(PtrInt(Length(Source))));
|
Result.Add(Pointer(PtrInt(Length(Source))));
|
||||||
If not Breakable(Result, 0) then
|
If not Breakable(Result, 0) then
|
||||||
@ -1404,6 +1404,9 @@ end;
|
|||||||
{ =============================================================================
|
{ =============================================================================
|
||||||
|
|
||||||
$Log$
|
$Log$
|
||||||
|
Revision 1.15 2004/12/19 19:29:04 marc
|
||||||
|
* x86_64 fix: Conversion if integer to pointer
|
||||||
|
|
||||||
Revision 1.14 2004/12/19 19:26:05 marc
|
Revision 1.14 2004/12/19 19:26:05 marc
|
||||||
* x86_64 fix: Conversion if integer to pointer
|
* x86_64 fix: Conversion if integer to pointer
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user