From: Scott Graham Date: Thu, 18 Jun 2015 22:06:42 +0000 (-0700) Subject: Error+exit -> Fatal X-Git-Tag: upstream/1.7.0^2~62^2~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=38aba9dbe68b800038f1cefc827362c126c7b212;p=platform%2Fupstream%2Fninja.git Error+exit -> Fatal --- diff --git a/src/msvc_helper-win32.cc b/src/msvc_helper-win32.cc index f875633..a52dd38 100644 --- a/src/msvc_helper-win32.cc +++ b/src/msvc_helper-win32.cc @@ -98,9 +98,8 @@ string CLParser::Parse(const string& output, const string& deps_prefix) { string normalized; string err; if (!IncludesNormalize::Normalize(include, NULL, &normalized, &err)) { - Error("failed to normalize path: %s: %s\n", include.c_str(), + Fatal("failed to normalize path: %s: %s\n", include.c_str(), err.c_str()); - exit(1); } if (!IsSystemInclude(normalized)) includes_.insert(normalized);