summaryrefslogtreecommitdiff
path: root/cpp/test/IceStorm/stress/Publisher.cpp
diff options
context:
space:
mode:
authorsarah <993273596@qq.com>2018-11-28 04:08:22 +0800
committerJose <pepone@users.noreply.github.com>2018-11-27 21:08:22 +0100
commit14bcb3f730fdffe1d49f2ae9596fe800c8fbe075 (patch)
tree3e13a510065298acb52b6379483128fd6e770c16 /cpp/test/IceStorm/stress/Publisher.cpp
parentSign PHP Windows DLLs (diff)
downloadice-14bcb3f730fdffe1d49f2ae9596fe800c8fbe075.tar.bz2
ice-14bcb3f730fdffe1d49f2ae9596fe800c8fbe075.tar.xz
ice-14bcb3f730fdffe1d49f2ae9596fe800c8fbe075.zip
Add "error" in static text when handling IceUtilInternal::BadOptException (#307)
Diffstat (limited to 'cpp/test/IceStorm/stress/Publisher.cpp')
-rw-r--r--cpp/test/IceStorm/stress/Publisher.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/test/IceStorm/stress/Publisher.cpp b/cpp/test/IceStorm/stress/Publisher.cpp
index 65cfb870944..03a25cd84d7 100644
--- a/cpp/test/IceStorm/stress/Publisher.cpp
+++ b/cpp/test/IceStorm/stress/Publisher.cpp
@@ -41,7 +41,7 @@ Publisher::run(int argc, char** argv)
catch(const IceUtilInternal::BadOptException& e)
{
ostringstream os;
- os << argv[0] << ": " << e.reason;
+ os << argv[0] << ": error: " << e.reason;
throw invalid_argument(os.str());
}