Browse Source

Init next_auto_fan_check_ms to zero

Scott Lahteine 9 years ago
parent
commit
e88575c8ec
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Marlin/temperature.cpp

+ 1
- 1
Marlin/temperature.cpp View File

@@ -185,7 +185,7 @@ int Temperature::minttemp_raw[HOTENDS] = ARRAY_BY_HOTENDS(HEATER_0_RAW_LO_TEMP ,
185 185
 #endif
186 186
 
187 187
 #if HAS_AUTO_FAN
188
-  millis_t Temperature::next_auto_fan_check_ms;
188
+  millis_t Temperature::next_auto_fan_check_ms = 0;
189 189
 #endif
190 190
 
191 191
 unsigned char Temperature::soft_pwm[HOTENDS];

Loading…
Cancel
Save