summaryrefslogtreecommitdiff
path: root/cpp/src/Slice/Parser.cpp
diff options
context:
space:
mode:
authorMarc Laukien <marc@zeroc.com>2001-09-03 00:26:54 +0000
committerMarc Laukien <marc@zeroc.com>2001-09-03 00:26:54 +0000
commit45dce7b649d5e7b0e41e1e36d5a8054977dda0a2 (patch)
tree7514176e655ea4aa0ac81dea9a246aec5025c119 /cpp/src/Slice/Parser.cpp
parentlittle endian (diff)
downloadice-45dce7b649d5e7b0e41e1e36d5a8054977dda0a2.tar.bz2
ice-45dce7b649d5e7b0e41e1e36d5a8054977dda0a2.tar.xz
ice-45dce7b649d5e7b0e41e1e36d5a8054977dda0a2.zip
fixes
Diffstat (limited to 'cpp/src/Slice/Parser.cpp')
-rw-r--r--cpp/src/Slice/Parser.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/Slice/Parser.cpp b/cpp/src/Slice/Parser.cpp
index 63a7da6e124..58da790bea5 100644
--- a/cpp/src/Slice/Parser.cpp
+++ b/cpp/src/Slice/Parser.cpp
@@ -1664,7 +1664,7 @@ Slice::Unit::currentIncludeLevel()
void
Slice::Unit::error(const char* s)
{
- cerr << _currentFile << ':' << _currentLine << " error: " << s << endl;
+ cerr << _currentFile << ':' << _currentLine << ": " << s << endl;
yynerrs++;
}
@@ -1677,7 +1677,7 @@ Slice::Unit::error(const string& s)
void
Slice::Unit::warning(const char* s)
{
- cerr << _currentFile << ':' << _currentLine << " warning: " << s << endl;
+ cerr << _currentFile << ':' << _currentLine << ": warning: " << s << endl;
}
void