diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-03-26 15:30:19 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-03-26 15:33:35 +0100 |
commit | 3ce8a7dab59b7a77e1223d1357e6c32c31e4fba6 (patch) | |
tree | 9d6b6ac9fb7e0874580568220e802ba9e0dc94cd /sal/qa/rtl | |
parent | e4fbe2582c4e042f50db3d5d86b717fe15721ab5 (diff) |
const_cast: convert some C-style casts and remove some redundant ones
Change-Id: I03e43d219a65aa270f73a91896e0e7a567d424bc
Diffstat (limited to 'sal/qa/rtl')
-rw-r--r-- | sal/qa/rtl/process/rtl_Process.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sal/qa/rtl/process/rtl_Process.cxx b/sal/qa/rtl/process/rtl_Process.cxx index 6640eed804e3..535b4f1f903b 100644 --- a/sal/qa/rtl/process/rtl_Process.cxx +++ b/sal/qa/rtl/process/rtl_Process.cxx @@ -50,7 +50,7 @@ inline void printUString( const ::rtl::OUString & str, const sal_Char * msg = NU } rtl::OString aString; aString = ::rtl::OUStringToOString( str, RTL_TEXTENCODING_ASCII_US ); - printf("%s\n", (char *)aString.getStr( ) ); + printf("%s\n", aString.getStr( ) ); } inline ::rtl::OUString getModulePath( void ) |