From b4252e39a61533773c2971d3b6be86ce547a32db Mon Sep 17 00:00:00 2001 From: David Rose Date: Thu, 9 Dec 2004 21:33:03 +0000 Subject: [PATCH] typo in comment --- panda/src/express/virtualFileSystem.cxx | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/panda/src/express/virtualFileSystem.cxx b/panda/src/express/virtualFileSystem.cxx index 9cad1b4bfe..54700ebc78 100644 --- a/panda/src/express/virtualFileSystem.cxx +++ b/panda/src/express/virtualFileSystem.cxx @@ -353,11 +353,10 @@ find_file(const Filename &filename, const DSearchPath &searchpath) const { Filename match(searchpath.get_directory(i), filename); if (searchpath.get_directory(i) == "." && filename.is_fully_qualified()) { - // A special case for the "." directory: to avoid prefixing - // an endless stream of ./ in front of files, if the - // filename already has a ./ prefixed - // (i.e. is_fully_fully_qualified() is true), we don't - // prefix another one. + // A special case for the "." directory: to avoid prefixing an + // endless stream of ./ in front of files, if the filename + // already has a ./ prefixed (i.e. is_fully_qualified() is + // true), we don't prefix another one. match = filename; } PT(VirtualFile) found_file = get_file(match);