From: Thomas Jarosch Date: Thu, 17 Dec 2015 08:26:09 +0000 (+0100) Subject: Fix typo in comment X-Git-Tag: v2.8~6 X-Git-Url: http://developer.intra2net.com/git/?a=commitdiff_plain;h=b8ed7aca1ad39f9afec8e24c58b68eb067aff444;p=libi2ncommon Fix typo in comment --- diff --git a/src/filefunc.cpp b/src/filefunc.cpp index 80790fc..8b1b2f5 100644 --- a/src/filefunc.cpp +++ b/src/filefunc.cpp @@ -1016,7 +1016,7 @@ long long du(const std::string &path, std::string *error) std::vector 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;