Fix cast to function pointer.

This commit is contained in:
Sebastian Bauer 2018-04-09 23:24:07 +02:00
parent 425f899302
commit 58f36203b1
1 changed files with 1 additions and 1 deletions

View File

@ -136,7 +136,7 @@ profil(unsigned short *buffer, size_t bufSize, size_t offset, unsigned int scale
ProfileData.CounterStart = GetCounterStart();
/* Set interrupt vector */
CounterInt.is_Code = (void (*)())CounterIntFn;
CounterInt.is_Code = (void (*)(void))CounterIntFn;
CounterInt.is_Data = &ProfileData;
IPM->SetInterruptVector(1, &CounterInt);