j
k
j a
j l
OnkelDead wrote:
+const char *route_names[] = {
The strings are const, but the array is not. This should be
static const char * const route_names[] = { ...
There are lots of other static variables that probably can be const.
Regards, Clemens
Back to the thread
Back to the list