Merge pull request #3749 from esenapaj/patch-3

Enclose all #error strings by double-quotes
This commit is contained in:
Scott Lahteine
2016-05-14 15:01:56 -07:00
47 changed files with 169 additions and 169 deletions

View File

@@ -3957,10 +3957,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
/**