aboutsummaryrefslogtreecommitdiff
path: root/bdep/utility.txx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2019-11-07 11:18:28 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2019-11-07 11:18:28 +0200
commitbbc87d7d08244f85343d86fb8a126185c566fe95 (patch)
tree4ab73f8311711e2a993e5129d2e5b2879b4227f5 /bdep/utility.txx
parentd268ff193e240751485bb6ff01268d45c21548ed (diff)
Cosmetic changes
Diffstat (limited to 'bdep/utility.txx')
-rw-r--r--bdep/utility.txx5
1 files changed, 3 insertions, 2 deletions
diff --git a/bdep/utility.txx b/bdep/utility.txx
index cf03911..81fd68c 100644
--- a/bdep/utility.txx
+++ b/bdep/utility.txx
@@ -262,7 +262,7 @@ namespace bdep
try
{
if (f.string () == "-")
- return parse_manifest<T> (std::cin, "stdin", what, iu);
+ return parse_manifest<T> (std::cin, "<stdin>", what, iu);
if (!file_exists (f))
fail << what << " manifest file " << f << " does not exist";
@@ -352,7 +352,8 @@ namespace bdep
}
catch (const io_error& e)
{
- fail << "unable to write " << what << " manifest " << name << ": " << e;
+ fail << "unable to write to " << what << " manifest " << name << ": "
+ << e;
}
}