summaryrefslogtreecommitdiff
path: root/svl/source/misc/lockfilecommon.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'svl/source/misc/lockfilecommon.cxx')
-rw-r--r--svl/source/misc/lockfilecommon.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/svl/source/misc/lockfilecommon.cxx b/svl/source/misc/lockfilecommon.cxx
index 3f13e35aad7c..e0f3f89d0325 100644
--- a/svl/source/misc/lockfilecommon.cxx
+++ b/svl/source/misc/lockfilecommon.cxx
@@ -176,7 +176,7 @@ OUString LockFileCommon::EscapeCharacters( const OUString& aSource )
for ( sal_Int32 nInd = 0; nInd < aSource.getLength() && pStr[nInd] != 0; nInd++ )
{
if ( pStr[nInd] == '\\' || pStr[nInd] == ';' || pStr[nInd] == ',' )
- aBuffer.append( (sal_Unicode)'\\' );
+ aBuffer.append( '\\' );
aBuffer.append( pStr[nInd] );
}