diff options
author | Marc Laukien <marc@zeroc.com> | 2001-09-03 00:26:54 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2001-09-03 00:26:54 +0000 |
commit | 45dce7b649d5e7b0e41e1e36d5a8054977dda0a2 (patch) | |
tree | 7514176e655ea4aa0ac81dea9a246aec5025c119 /cpp/src/Slice/Parser.cpp | |
parent | little endian (diff) | |
download | ice-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.cpp | 4 |
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 |