浏览代码

Fix serial.h indents

Scott Lahteine 6 年前
父节点
当前提交
5ccf8c2c33
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2
    2
      Marlin/src/core/serial.h

+ 2
- 2
Marlin/src/core/serial.h 查看文件

@@ -73,11 +73,11 @@ extern uint8_t marlin_debug_flags;
73 73
 
74 74
 #define SERIAL_CHAR(x)          SERIAL_OUT(write, x)
75 75
 #define SERIAL_ECHO(x)          SERIAL_OUT(print, x)
76
-#define SERIAL_ECHO_F(V...)      SERIAL_OUT(print, V)
76
+#define SERIAL_ECHO_F(V...)     SERIAL_OUT(print, V)
77 77
 #define SERIAL_ECHOLN(x)        SERIAL_OUT(println, x)
78 78
 #define SERIAL_PRINT(x,b)       SERIAL_OUT(print, x, b)
79 79
 #define SERIAL_PRINTLN(x,b)     SERIAL_OUT(println, x, b)
80
-#define SERIAL_PRINTF(V...)      SERIAL_OUT(printf, V)
80
+#define SERIAL_PRINTF(V...)     SERIAL_OUT(printf, V)
81 81
 #define SERIAL_FLUSH()          SERIAL_OUT(flush)
82 82
 
83 83
 #if TX_BUFFER_SIZE > 0

正在加载...
取消
保存