diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-01-17 19:01:27 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-01-20 09:06:50 +0100 |
commit | b70b4e644b5bb5356509505855418453dc621cfc (patch) | |
tree | 0a2441aa91947032d398b688f73553ff4d5a4afb /sal/textenc/convertiso2022kr.cxx | |
parent | 2e160b1e0e5b28b8a6ddfa07fc6ffff1c6e590bc (diff) |
Some more loplugin:cstylecast: sal
Change-Id: Ie54d340478412e62b87d66e287fd8a3963e97898
Diffstat (limited to 'sal/textenc/convertiso2022kr.cxx')
-rw-r--r-- | sal/textenc/convertiso2022kr.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sal/textenc/convertiso2022kr.cxx b/sal/textenc/convertiso2022kr.cxx index 95a6520a8758..687e8dfc3db1 100644 --- a/sal/textenc/convertiso2022kr.cxx +++ b/sal/textenc/convertiso2022kr.cxx @@ -110,7 +110,7 @@ sal_Size ImplConvertIso2022KrToUnicode(void const * pData, for (; nConverted < nSrcBytes; ++nConverted) { bool bUndefined = true; - sal_uInt32 nChar = *(unsigned char const *) pSrcBuf++; + sal_uInt32 nChar = *reinterpret_cast<unsigned char const *>(pSrcBuf++); switch (eState) { case IMPL_ISO_2022_KR_TO_UNICODE_STATE_ASCII: |