remove needless pointer casts

This commit is contained in:
2025-11-24 15:25:09 +01:00
parent 0648f31d4a
commit 58debe99ed
111 changed files with 375 additions and 375 deletions

View File

@@ -37,9 +37,9 @@ void loadCom()
#endif
void* ptr = epicsFindSymbol("epicsThreadGetCPUs");
testOk(ptr==(void*)&epicsThreadGetCPUs,
testOk(ptr==&epicsThreadGetCPUs,
"%p == %p (epicsThreadGetCPUs) : %s",
ptr, (void*)&epicsThreadGetCPUs,
ptr, &epicsThreadGetCPUs,
epicsLoadError());
testTodoEnd();