TestErasureCodeShec_thread.cc: use static_cast instead of c-style

Signed-off-by: Danny Al-Gaaf <danny.al-gaaf@bisect.de>
This commit is contained in:
Danny Al-Gaaf 2015-03-05 03:45:45 +01:00
parent bfe58833d4
commit 5393f32bbf

View File

@ -99,7 +99,7 @@ int main(int argc, char **argv)
void* thread1(void* pParam)
{
TestParam* param = (TestParam*) pParam;
TestParam* param = static_cast<TestParam*>(pParam);
time_t start, end;
int r;