remove needless pointer casts

This commit is contained in:
2026-01-06 09:51:03 +01:00
parent 0648f31d4a
commit 58debe99ed
111 changed files with 375 additions and 375 deletions
+2 -2
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();