summaryrefslogtreecommitdiff
path: root/io/source/acceptor/acc_pipe.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-06-08 16:25:54 +0200
committerStephan Bergmann <sbergman@redhat.com>2015-06-08 16:25:54 +0200
commit950f7c31ea0ae8a724787f05f23d1fabe59a91b7 (patch)
tree00c063a7f1c643c039e1115be170ed7f3187186f /io/source/acceptor/acc_pipe.cxx
parent10bd50c25d485732cf274bec1e80a8500d91e071 (diff)
loplugin:cstylecast: deal with remaining pointer casts
Change-Id: Ia282c33c70977e3c9e8f1c6fd86bee2fa6eca5c3
Diffstat (limited to 'io/source/acceptor/acc_pipe.cxx')
-rw-r--r--io/source/acceptor/acc_pipe.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/io/source/acceptor/acc_pipe.cxx b/io/source/acceptor/acc_pipe.cxx
index 34d9bf65d15e..28a7cd285925 100644
--- a/io/source/acceptor/acc_pipe.cxx
+++ b/io/source/acceptor/acc_pipe.cxx
@@ -189,7 +189,7 @@ namespace io_acceptor
}
else if( osl_Pipe_E_None == status )
{
- return Reference < XConnection > ( (XConnection * ) pConn );
+ return Reference < XConnection > ( static_cast<XConnection *>(pConn) );
}
else
{