--- In [email protected], "John Matthews" <jm5...@...> wrote: > > Suggestions:
6. Does timerStartInst_ms() take a void* argument in the 4th parameter? If so, then you should not be casting to void* (assuming you are using a C compiler) - no cast is required, and adding one just complicates the code. 7. C has operators for +=1 and -=1, namely ++ and --, so use them.
