In tools_misc.c around line 2884 there is a for loop that uses uninitialized variable n as counter.
I simply put 'int n;' before the loop and it compiled fine. I guess you could have 'for (int n = 0; n < 6; n++)' instead to limit the scope..
Otherwise, excellent work Sir!!!
In tools_misc.c around line 2884 there is a for loop that uses uninitialized variable n as counter.
I simply put 'int n;' before the loop and it compiled fine. I guess you could have 'for (int n = 0; n < 6; n++)' instead to limit the scope..
Otherwise, excellent work Sir!!!