diff options
author | Stijn Buys <ingar@osirion.org> | 2008-02-05 00:40:31 +0000 |
---|---|---|
committer | Stijn Buys <ingar@osirion.org> | 2008-02-05 00:40:31 +0000 |
commit | e63d8bec31ad067efb7aafd1c798bcdab8db8faf (patch) | |
tree | 84a8641b7dd9bf7cfbac36d6ece615050d9eb0a7 /src/sys | |
parent | 95ca0e469ef856c0182bb0da411e4417391e3780 (diff) |
edited error message
Diffstat (limited to 'src/sys')
-rw-r--r-- | src/sys/consoleinterface.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sys/consoleinterface.cc b/src/sys/consoleinterface.cc index 5740807..f80939d 100644 --- a/src/sys/consoleinterface.cc +++ b/src/sys/consoleinterface.cc @@ -18,7 +18,7 @@ ConsoleInterface *ConsoleInterface::consoleinterface_instance = 0; ConsoleInterface::ConsoleInterface() { if (consoleinterface_instance) { - std::cerr << "multiple singleton instances: sys::ConsoleInterface" << std::endl; + std::cerr << "multiple sys::ConsoleInterface instances!" << std::endl; sys::quit(2); } consoleinterface_instance = this; |