I was fixing some functions in a piece of someone else code that included a number of functions that took no arguments. They were declared as
return_type_t func();
instead of return_type_t func(void);
Then I found that a bunch of these were put in a array of structs with function pointers. When I fixed the function pointer to take void it gave me another warning since 1 of the function took a char* instead of void ptr.
What's the best solution for this sort of thing without a large rewrite(as the code is complex I was mainly cleaning it up around the edges and wish to avoid changing how it flows)?