summaryrefslogtreecommitdiff
path: root/cpp/src
diff options
context:
space:
mode:
authorMark Spruiell <mes@zeroc.com>2009-03-12 08:37:08 -0700
committerMark Spruiell <mes@zeroc.com>2009-03-12 08:37:08 -0700
commitd02c547fb282a0af6225ed64134c64bb64a526e0 (patch)
treec641d980c5ca4b7da393ad0e083724bf9fd64149 /cpp/src
parentBug 3832 - fix slice compilation of UNC files (diff)
downloadice-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.cpp2
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());
}