aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2019-11-07 11:17:58 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2019-11-07 11:17:58 +0200
commita55f302c289bf6f855b944c8e74f1eac2382d9ab (patch)
tree82fcd68db53d27c71281728a4ad704e1b5ca0cb8
parent903a688860a24b3167a02465c5552ec8bf17be38 (diff)
Cosmetic changes
-rw-r--r--bbot/utility.txx4
1 files changed, 2 insertions, 2 deletions
diff --git a/bbot/utility.txx b/bbot/utility.txx
index 98ae729..f82d133 100644
--- a/bbot/utility.txx
+++ b/bbot/utility.txx
@@ -146,7 +146,7 @@ namespace bbot
try
{
if (f.string () == "-")
- return parse_manifest<T> (std::cin, "stdin", what, fh, iu);
+ return parse_manifest<T> (std::cin, "<stdin>", what, fh, iu);
if (!file_exists (f))
fail (fh) << what << " manifest file " << f << " does not exist";
@@ -233,7 +233,7 @@ namespace bbot
}
catch (const io_error& e)
{
- fail (fh) << "unable to write " << what << " manifest " << name
+ fail (fh) << "unable to write to " << what << " manifest " << name
<< ": " << e;
}
}