diff options
author | Mark Spruiell <mes@zeroc.com> | 2009-03-12 08:37:08 -0700 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2009-03-12 08:37:08 -0700 |
commit | d02c547fb282a0af6225ed64134c64bb64a526e0 (patch) | |
tree | c641d980c5ca4b7da393ad0e083724bf9fd64149 /cpp/src | |
parent | Bug 3832 - fix slice compilation of UNC files (diff) | |
download | ice-d02c547fb282a0af6225ed64134c64bb64a526e0.tar.bz2 ice-d02c547fb282a0af6225ed64134c64bb64a526e0.tar.xz ice-d02c547fb282a0af6225ed64134c64bb64a526e0.zip |
minor fix to slice2cs error message
Diffstat (limited to 'cpp/src')
-rw-r--r-- | cpp/src/slice2cs/Gen.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/slice2cs/Gen.cpp b/cpp/src/slice2cs/Gen.cpp index 0fe57340a13..b803c48c768 100644 --- a/cpp/src/slice2cs/Gen.cpp +++ b/cpp/src/slice2cs/Gen.cpp @@ -1110,7 +1110,7 @@ Slice::Gen::Gen(const string& base, const vector<string>& includePaths, const st if(stat(fileImpl.c_str(), &st) == 0) { ostringstream os; - os << fileImpl << "' already exists - will not overwrite"; + os << "`" << fileImpl << "' already exists - will not overwrite"; throw FileException(__FILE__, __LINE__, os.str()); } |