diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-10-14 16:54:38 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-10-16 14:18:37 +0000 |
commit | 8b984dae44fba9a49448e19699261703be55d197 (patch) | |
tree | 676017ba036165a822fc9c59365da071328aabdb /idlc | |
parent | 1ccc7c425b47e1eaeca9463cb4367afd72fe1656 (diff) |
clang-cl loplugin: idlc
Change-Id: Idcd117aa896779bb5ebdfa33c24d5e374dd943cf
Reviewed-on: https://gerrit.libreoffice.org/29861
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Tested-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'idlc')
-rw-r--r-- | idlc/source/idlcproduce.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/idlc/source/idlcproduce.cxx b/idlc/source/idlcproduce.cxx index 32e53dbce537..ab4e52c90fc4 100644 --- a/idlc/source/idlcproduce.cxx +++ b/idlc/source/idlcproduce.cxx @@ -71,7 +71,7 @@ static bool checkOutputPath(const OString& completeName) #if defined(SAL_UNX) if (mkdir(buffer.getStr(), 0777) == -1) #else - if (mkdir((char*)buffer.getStr()) == -1) + if (mkdir(buffer.getStr()) == -1) #endif { if (errno == ENOENT) |