From 78a6b00dde1e8f6625d228ffda9de0b0e5750ca7 Mon Sep 17 00:00:00 2001 From: Stephen Anthony Date: Thu, 17 Nov 2022 15:36:35 -0330 Subject: [PATCH] Fix typo. --- src/os/windows/FSNodeWINDOWS.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/os/windows/FSNodeWINDOWS.cxx b/src/os/windows/FSNodeWINDOWS.cxx index e9b0eb701..57e878bff 100644 --- a/src/os/windows/FSNodeWINDOWS.cxx +++ b/src/os/windows/FSNodeWINDOWS.cxx @@ -164,7 +164,7 @@ void FSNodeWINDOWS::addFile(AbstractFSList& list, ListMode mode, { const char* const asciiName = find_data.cFileName; - // Skip files starting with '.' (we assume empty filesnames never occur) + // Skip files starting with '.' (we assume empty filenames never occur) if (asciiName[0] == '.') return;