Browse Source

Fix expire_status warning (#15094)

Ludy 6 years ago
parent
commit
3f77d6a551
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Marlin/src/lcd/ultralcd.h

+ 1
- 1
Marlin/src/lcd/ultralcd.h View File

340
           static millis_t progress_bar_ms;  // Start time for the current progress bar cycle
340
           static millis_t progress_bar_ms;  // Start time for the current progress bar cycle
341
           static void draw_progress_bar(const uint8_t percent);
341
           static void draw_progress_bar(const uint8_t percent);
342
           #if PROGRESS_MSG_EXPIRE > 0
342
           #if PROGRESS_MSG_EXPIRE > 0
343
-            static millis_t MarlinUI::expire_status_ms; // = 0
343
+            static millis_t expire_status_ms; // = 0
344
             static inline void reset_progress_bar_timeout() { expire_status_ms = 0; }
344
             static inline void reset_progress_bar_timeout() { expire_status_ms = 0; }
345
           #endif
345
           #endif
346
         #endif
346
         #endif

Loading…
Cancel
Save