diff options
author | Tor Lillqvist <tml@iki.fi> | 2013-06-19 11:26:44 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2013-06-19 15:56:08 +0300 |
commit | ec13a7bdbf904092df066a52ccb03fda12b4bed3 (patch) | |
tree | 8be5503ead027753cf6ef5a4cef9e69aeaea6347 /sal/textenc | |
parent | f5000d66bac505572a91f2bc391ecc23bd1ee670 (diff) |
Fix warning: Value stored to 'eEncoding' is never read
eEncoding is assigned again a few lines below.
Change-Id: Ib475095bab30e0c2f066934a10cda650706c2c8a
Diffstat (limited to 'sal/textenc')
-rw-r--r-- | sal/textenc/tencinfo.cxx | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sal/textenc/tencinfo.cxx b/sal/textenc/tencinfo.cxx index 0bcadb70b88e..ded6bc53e868 100644 --- a/sal/textenc/tencinfo.cxx +++ b/sal/textenc/tencinfo.cxx @@ -448,7 +448,6 @@ rtl_TextEncoding SAL_CALL rtl_getTextEncodingFromUnixCharset( const char* pUnixC { if ( Impl_matchString( pSecondPart, pData->mpCharsetStr ) ) { - eEncoding = pData->meTextEncoding; break; } |