Fix typo in comment
authorThomas Jarosch <thomas.jarosch@intra2net.com>
Thu, 17 Dec 2015 08:26:09 +0000 (09:26 +0100)
committerThomas Jarosch <thomas.jarosch@intra2net.com>
Thu, 17 Dec 2015 08:26:09 +0000 (09:26 +0100)
src/filefunc.cpp

index 80790fc..8b1b2f5 100644 (file)
@@ -1016,7 +1016,7 @@ long long du(const std::string &path, std::string *error)
             std::vector<std::string> dirents = get_dir(path, false);
             BOOST_FOREACH(const std::string &filename, dirents)
             {
-                // Delete subdir or file.
+                // calculate size of subdir or file
                 long long rtn = du(path + "/" + filename, error);
                 if (rtn == -1)
                     return -1;