From cdf33d8b873f6a5faa07f602d7f8747943f0da9b Mon Sep 17 00:00:00 2001 From: Michael Jones Date: Wed, 13 Nov 2019 21:15:55 -0600 Subject: Fix invalid preprocessor #if --- src/graph.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/graph.cc b/src/graph.cc index facb76d..3214513 100644 --- a/src/graph.cc +++ b/src/graph.cc @@ -383,7 +383,7 @@ std::string EdgeEnv::MakePathList(const Node* const* const span, result.push_back(sep); const string& path = (*i)->PathDecanonicalized(); if (escape_in_out_ == kShellEscape) { -#if _WIN32 +#ifdef _WIN32 GetWin32EscapedString(path, &result); #else GetShellEscapedString(path, &result); -- cgit v0.12