aboutsummaryrefslogtreecommitdiff
path: root/bpkg/rep-info.cxx
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2018-07-12 19:54:23 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2018-07-12 19:55:09 +0300
commit5b2b72ed08f514444f05e7b42556ae096879f2e8 (patch)
tree61d90245d1ffd1784773f69631ed61d763a4e47c /bpkg/rep-info.cxx
parentfa9017f87197565b970d22d2d51241fdfa55c916 (diff)
Move STDIN, STDOUT, and STDERR to lower case
Diffstat (limited to 'bpkg/rep-info.cxx')
-rw-r--r--bpkg/rep-info.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/bpkg/rep-info.cxx b/bpkg/rep-info.cxx
index 9f78a91..b551084 100644
--- a/bpkg/rep-info.cxx
+++ b/bpkg/rep-info.cxx
@@ -177,7 +177,7 @@ namespace bpkg
// Note: serializing without any extra repository_manifests info.
//
- manifest_serializer s (cout, "STDOUT");
+ manifest_serializer s (cout, "stdout");
for (const repository_manifest& rm: rms)
rm.serialize (s);
@@ -268,7 +268,7 @@ namespace bpkg
// Note: serializing without any extra package_manifests info.
//
- manifest_serializer s (cout, "STDOUT");
+ manifest_serializer s (cout, "stdout");
for (const package_manifest& pm: pms)
pm.serialize (s);
s.next ("", ""); // End of stream.
@@ -310,7 +310,7 @@ namespace bpkg
}
catch (const io_error&)
{
- fail << "unable to write to STDOUT";
+ fail << "unable to write to stdout";
}
return 0;