From 941945bf42ad842de93971e3f0ae6664624f07a0 Mon Sep 17 00:00:00 2001 From: XhmikosR Date: Sat, 29 Sep 2012 18:28:14 +0300 Subject: [PATCH] missing tab to space --- tools/dmake.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/dmake.cpp b/tools/dmake.cpp index 32ddbe28b..59d4415e3 100644 --- a/tools/dmake.cpp +++ b/tools/dmake.cpp @@ -61,7 +61,7 @@ void getDeps(const std::string &filename, std::vector &depfiles) std::string::size_type pos2 = line.find("\"", pos1); std::string hfile(path + line.substr(pos1, pos2 - pos1)); - if (hfile.find("/../") != std::string::npos) // TODO: Ugly fix + if (hfile.find("/../") != std::string::npos) // TODO: Ugly fix hfile.erase(0, 4 + hfile.find("/../")); getDeps(hfile, depfiles); }