remove needless pointer casts

This commit is contained in:
2025-11-24 15:25:09 +01:00
committed by mdavidsaver
parent 85347172c6
commit 6d85a36397
111 changed files with 369 additions and 369 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();