Sometimes I'm reading code from the source tree and then stumble upon various things that I'm wondering if it's worth "fixing". These are not real bugs, which is the numero uno priority, but I'm wondering if anyone care about these things or if they're just an annoyance and a waste of time for the committers.
Following is a list of those things and a yes or no answer should be sufficient: * Remove useless cast operations, e.g. p = malloc((size_t)sizeof(n)); * Make pre-ANSI function definitions ANSI. * Add missing function prototypes (mostly together with the above). * Typos and grammatical errors in comments. * Wrap long lines to 80 characters. * First character lowercase in "usage" strings. * Anything else that I have forgotten about. If yes to any of the above, who do I annoy? tech@ or Theo or ... ? Thanks. Thomas