open the ardupilot folder in your machine, find the ../libraries/AP_GyroFFT/AP_GyroFFT.cpp and open it.
find this the line 387: if (gyro_buffer.available() > _state->_window_size + uint16_t(_samples_per_frame >> 1)) { // half the frame size is a heuristic
change it to if (gyro_buffer.available() > unsigned(_state->_window_size + uint16_t(_samples_per_frame >> 1))) { // half the frame size is a heuristic