From 7f80dea641427a9666f78be50138ce6af26b7f14 Mon Sep 17 00:00:00 2001 From: Basile Burg Date: Sat, 9 Aug 2014 23:23:43 +0200 Subject: [PATCH] fix superfluous dirSeparator --- src/ce_common.pas | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ce_common.pas b/src/ce_common.pas index 2c8f0596..a29fa404 100644 --- a/src/ce_common.pas +++ b/src/ce_common.pas @@ -477,7 +477,7 @@ var procedure tryAdd; begin if sr.Attr and faDirectory <> faDirectory then - aList.Add(aPath + directorySeparator + sr.Name); + aList.Add(aPath + sr.Name); end; begin if findFirst(aPath + directorySeparator + '*', faAnyFile, sr) = 0 then