mirror of https://gitlab.com/basile.b/dexed.git
fix superfluous dirSeparator
This commit is contained in:
parent
3f1d583490
commit
7f80dea641
|
@ -477,7 +477,7 @@ var
|
||||||
procedure tryAdd;
|
procedure tryAdd;
|
||||||
begin
|
begin
|
||||||
if sr.Attr and faDirectory <> faDirectory then
|
if sr.Attr and faDirectory <> faDirectory then
|
||||||
aList.Add(aPath + directorySeparator + sr.Name);
|
aList.Add(aPath + sr.Name);
|
||||||
end;
|
end;
|
||||||
begin
|
begin
|
||||||
if findFirst(aPath + directorySeparator + '*', faAnyFile, sr) = 0 then
|
if findFirst(aPath + directorySeparator + '*', faAnyFile, sr) = 0 then
|
||||||
|
|
Loading…
Reference in New Issue