mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-16 01:39:27 +02:00
* 64bit compile fix
git-svn-id: trunk@5118 -
This commit is contained in:
parent
d21842fe61
commit
4700eee7cf
@ -153,9 +153,9 @@ implementation
|
||||
(dir.Name<>'..') then
|
||||
begin
|
||||
if not(tf_files_case_sensitive in source_info.flags) then
|
||||
DirectoryEntries.Add(Lower(Dir.Name),Pointer(Dir.Attr))
|
||||
DirectoryEntries.Add(Lower(Dir.Name),Pointer(Ptrint(Dir.Attr)))
|
||||
else
|
||||
DirectoryEntries.Add(Dir.Name,Pointer(Dir.Attr));
|
||||
DirectoryEntries.Add(Dir.Name,Pointer(Ptrint(Dir.Attr)));
|
||||
end;
|
||||
until findnext(dir) <> 0;
|
||||
end;
|
||||
|
Loading…
Reference in New Issue
Block a user