Fix compiler warning sketch/Marlin_main.cpp:8220:15: warning: unused variable 'k' [-Wunused-variable].

This commit is contained in:
Marek Bel 2018-07-24 18:33:44 +02:00
parent 3f0684ea30
commit c19bf72ba9

View File

@ -8217,7 +8217,7 @@ float temp_comp_interpolation(float inp_temperature) {
//cubic spline interpolation
int n, i, j, k;
int n, i, j;
float h[10], a, b, c, d, sum, s[10] = { 0 }, x[10], F[10], f[10], m[10][10] = { 0 }, temp;
int shift[10];
int temp_C[10];