summaryrefslogtreecommitdiff
path: root/ucb
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2016-07-08 16:41:11 +0200
committerStephan Bergmann <sbergman@redhat.com>2016-07-08 16:47:31 +0200
commit2e23166be8a1f33ec0023b70acd8a098c0d18b84 (patch)
treeabcac6ba6e20d63e5a701130f4bcbb192e116ae4 /ucb
parentfdbe9a90bc5f39d59fd5dbbd0a198bc95360abcd (diff)
loplugin:redundantcast: redundant static_casts in ucb
Change-Id: Ifd6a843ce5af9409512c4303a103fdc158e38c40
Diffstat (limited to 'ucb')
-rw-r--r--ucb/source/ucp/ftp/ftploaderthread.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/ucb/source/ucp/ftp/ftploaderthread.cxx b/ucb/source/ucp/ftp/ftploaderthread.cxx
index 25bc26d55428..ab2df72ba55e 100644
--- a/ucb/source/ucp/ftp/ftploaderthread.cxx
+++ b/ucb/source/ucp/ftp/ftploaderthread.cxx
@@ -88,7 +88,7 @@ CURL* FTPLoaderThread::handle() {
ret = nullptr;
}
}
- osl_setThreadKeyData(m_threadKey,static_cast<void*>(ret));
+ osl_setThreadKeyData(m_threadKey, ret);
}
return ret;