diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2018-06-13 11:41:00 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2018-06-13 11:41:00 +0200 |
commit | 18c95eef7ba0acf85b0e962b2642e1242742657a (patch) | |
tree | a6671fd0af236f96a8305bb00d1728f17b17b13b | |
parent | e4a3a97bc76e6e88dede7e39afe126eb021a78d7 (diff) |
Fix diagnostics bug
-rw-r--r-- | build2/cc/windows-manifest.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build2/cc/windows-manifest.cxx b/build2/cc/windows-manifest.cxx index 680e1ac..2807d94 100644 --- a/build2/cc/windows-manifest.cxx +++ b/build2/cc/windows-manifest.cxx @@ -125,7 +125,7 @@ namespace build2 } catch (const io_error& e) { - fail << "unable to write to " << m << ": " << e; + fail << "unable to write to " << mf << ": " << e; } return make_pair (move (mf), true); |