aboutsummaryrefslogtreecommitdiff
path: root/bpkg/rep-info.cxx
diff options
context:
space:
mode:
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;