aboutsummaryrefslogtreecommitdiff
path: root/bdep/utility.txx
diff options
context:
space:
mode:
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;
}
}