Enclose all #error strings with apostrophes

This commit is contained in:
esenapaj
2016-05-13 21:10:23 +09:00
parent 14cd0f4c92
commit 888443ca1e
47 changed files with 169 additions and 169 deletions

View File

@@ -3953,10 +3953,10 @@ inline void gcode_M42() {
*/
#if ENABLED(Z_MIN_PROBE_ENDSTOP)
#if !HAS_Z_MIN_PROBE_PIN
#error You must define Z_MIN_PROBE_PIN to enable Z probe repeatability calculation.
#error "You must define Z_MIN_PROBE_PIN to enable Z probe repeatability calculation."
#endif
#elif !HAS_Z_MIN
#error You must define Z_MIN_PIN to enable Z probe repeatability calculation.
#error "You must define Z_MIN_PIN to enable Z probe repeatability calculation."
#endif
/**