Changed declaration of reg_dump to match kb shortcut handler

This commit is contained in:
lucic71 2022-06-28 19:40:51 +03:00
parent 459e7d54b8
commit 704d81fe91
1 changed files with 5 additions and 1 deletions

View File

@ -7,8 +7,12 @@
* reg_dump:
* Dumps the content of general purpose registers on the screen.
*
* Argument became void * because this routine is used as a handeler for a
* keyboard shortcut that receives a pointer to void. Normally I would set
* the argument to void.
*
*/
void reg_dump(void);
void reg_dump(void *);
#endif