소스 검색

Move STRINGIFY to macros.h, use in language.h

Scott Lahteine 8 년 전
부모
커밋
071c742b8a
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2
    2
      Marlin/macros.h

+ 2
- 2
Marlin/macros.h 파일 보기

@@ -24,8 +24,8 @@
24 24
 #define MACROS_H
25 25
 
26 26
 // Macros to make a string from a macro
27
-#define STRINGIFY_(n) #n
28
-#define STRINGIFY(n) STRINGIFY_(n)
27
+#define STRINGIFY_(M) #M
28
+#define STRINGIFY(M) STRINGIFY_(M)
29 29
 
30 30
 // Macros for bit masks
31 31
 #define TEST(n,b) (((n)&_BV(b))!=0)

Loading…
취소
저장