Browse Source

Drop extra parens from address-of operator

Scott Lahteine 7 years ago
parent
commit
7ba7474a73
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Marlin/Marlin_main.cpp

+ 1
- 1
Marlin/Marlin_main.cpp View File

@@ -6967,7 +6967,7 @@ inline void gcode_M111() {
6967 6967
     for (uint8_t i = 0; i < COUNT(debug_strings); i++) {
6968 6968
       if (TEST(marlin_debug_flags, i)) {
6969 6969
         if (comma++) SERIAL_CHAR(',');
6970
-        serialprintPGM((char*)pgm_read_word(&(debug_strings[i])));
6970
+        serialprintPGM((char*)pgm_read_word(&debug_strings[i]));
6971 6971
       }
6972 6972
     }
6973 6973
   }

Loading…
Cancel
Save