summaryrefslogtreecommitdiff
path: root/desktop/unx
diff options
context:
space:
mode:
Diffstat (limited to 'desktop/unx')
-rw-r--r--desktop/unx/source/start.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/desktop/unx/source/start.c b/desktop/unx/source/start.c
index d191b48847e6..8503b9a13abf 100644
--- a/desktop/unx/source/start.c
+++ b/desktop/unx/source/start.c
@@ -382,17 +382,17 @@ escape_path( rtl_uString *pToEscape )
sal_Unicode c = pToEscape->buffer[i];
switch ( c )
{
- case (sal_Unicode)'\0':
+ case '\0':
rtl_uStringbuffer_insert_ascii( &pBuffer, &nCapacity,
rtl_uString_getLength( pBuffer ),
RTL_CONSTASCII_STRINGPARAM( "\\0" ) );
break;
- case (sal_Unicode)',':
+ case ',':
rtl_uStringbuffer_insert_ascii( &pBuffer, &nCapacity,
rtl_uString_getLength( pBuffer ),
RTL_CONSTASCII_STRINGPARAM( "\\," ) );
break;
- case (sal_Unicode)'\\':
+ case '\\':
rtl_uStringbuffer_insert_ascii( &pBuffer, &nCapacity,
rtl_uString_getLength( pBuffer ),
RTL_CONSTASCII_STRINGPARAM( "\\\\" ) );