소스 검색

Merge pull request #6995 from Bob-the-Kuhn/add-static

Add "static"
Bob-the-Kuhn 8 년 전
부모
커밋
76a610cf81
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1
    1
      Marlin/Marlin_main.cpp

+ 1
- 1
Marlin/Marlin_main.cpp 파일 보기

@@ -1499,7 +1499,7 @@ static void set_axis_is_at_home(const AxisEnum axis) {
1499 1499
  * Some planner shorthand inline functions
1500 1500
  */
1501 1501
 inline float get_homing_bump_feedrate(const AxisEnum axis) {
1502
-  const uint8_t homing_bump_divisor[] PROGMEM = HOMING_BUMP_DIVISOR;
1502
+  static const uint8_t homing_bump_divisor[] PROGMEM = HOMING_BUMP_DIVISOR;
1503 1503
   uint8_t hbd = pgm_read_byte(&homing_bump_divisor[axis]);
1504 1504
   if (hbd < 1) {
1505 1505
     hbd = 10;

Loading…
취소
저장