diff options
author | Benoit Foucher <benoit@zeroc.com> | 2014-10-13 17:17:06 +0200 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2014-10-13 17:17:06 +0200 |
commit | a1e01a4fb728682c3e39345e6ec9cfe581447616 (patch) | |
tree | 28e9971ae7e40dd0253bf6d82b0658f10cbaeed0 /cpp/src/IceGrid/Parser.cpp | |
parent | Update JS with the same OutgoingAsync fixes as C++/Java/C# (diff) | |
download | ice-a1e01a4fb728682c3e39345e6ec9cfe581447616.tar.bz2 ice-a1e01a4fb728682c3e39345e6ec9cfe581447616.tar.xz ice-a1e01a4fb728682c3e39345e6ec9cfe581447616.zip |
Fixed icegridadmin Unix build issue
Diffstat (limited to 'cpp/src/IceGrid/Parser.cpp')
-rw-r--r-- | cpp/src/IceGrid/Parser.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/IceGrid/Parser.cpp b/cpp/src/IceGrid/Parser.cpp index 6caa9967d57..7c2e639ba02 100644 --- a/cpp/src/IceGrid/Parser.cpp +++ b/cpp/src/IceGrid/Parser.cpp @@ -254,7 +254,7 @@ void outputNewline() #ifdef _WIN32 fprintf_s(stdout, "\n"); #else - cout << nl; + cout << endl; #endif } |