diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-10-14 16:54:53 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-10-16 14:19:07 +0000 |
commit | 1a98de0ee1438c1a0dd4c59cf1016d81d8b1b7f3 (patch) | |
tree | a70a28d8d471159d2b3f32f0b33de035eb416791 /i18npool | |
parent | 8b984dae44fba9a49448e19699261703be55d197 (diff) |
clang-cl loplugin: i18npool
Change-Id: I9d0f4ac9c9abe119ab42736eb9b9ad4ea54a8806
Reviewed-on: https://gerrit.libreoffice.org/29862
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'i18npool')
-rw-r--r-- | i18npool/source/localedata/localedata.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/i18npool/source/localedata/localedata.cxx b/i18npool/source/localedata/localedata.cxx index 99a865e181cd..e2b9aa674793 100644 --- a/i18npool/source/localedata/localedata.cxx +++ b/i18npool/source/localedata/localedata.cxx @@ -520,7 +520,7 @@ oslGenericFunction SAL_CALL lcl_LookupTableHelper::getFunctionSymbolByName( aBuf.append( SAL_DLLPREFIX ).appendAscii(i.pLib).append( SAL_DLLEXTENSION ); #else aBuf.ensureCapacity(strlen(i.pLib) + 4); // mostly "*.dll" - aBuf.appendAscii(i.pLib).appendAscii( SAL_DLLEXTENSION ); + aBuf.appendAscii(i.pLib).append( SAL_DLLEXTENSION ); #endif osl::Module *module = new osl::Module(); if ( module->loadRelative(&thisModule, aBuf.makeStringAndClear()) ) |