Browse Source

Fix compiler warning: sketch/mesh_bed_calibration.cpp:135:20: warning: unused parameter 'i' [-Wunused-parameter]

Marek Bel 6 years ago
parent
commit
95d13cbb59
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Firmware/mesh_bed_calibration.cpp

+ 1 - 1
Firmware/mesh_bed_calibration.cpp

@@ -132,7 +132,7 @@ const float bed_ref_points[] PROGMEM = {
 static inline float sqr(float x) { return x * x; }
 
 #ifdef HEATBED_V2
-static inline bool point_on_1st_row(const uint8_t i)
+static inline bool point_on_1st_row(const uint8_t /*i*/)
 {
 	return false;
 }