Skip to content

Commit

Permalink
Avoid warnings in SanitiCheck.h
Browse files Browse the repository at this point in the history
/SanityCheck.h:107:53: warning: missing terminating ' character
...
  • Loading branch information
AnHardt committed Mar 26, 2015
1 parent 9e8427f commit 1ff6df8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Marlin/SanityCheck.h
Original file line number Diff line number Diff line change
Expand Up @@ -104,13 +104,13 @@

// Make sure probing points are reachable
#if LEFT_PROBE_BED_POSITION < MIN_PROBE_X
#error The given LEFT_PROBE_BED_POSITION can't be reached by the probe.
#error The given LEFT_PROBE_BED_POSITION can not be reached by the probe.
#elif RIGHT_PROBE_BED_POSITION > MAX_PROBE_X
#error The given RIGHT_PROBE_BED_POSITION can't be reached by the probe.
#error The given RIGHT_PROBE_BED_POSITION can not be reached by the probe.
#elif FRONT_PROBE_BED_POSITION < MIN_PROBE_Y
#error The given FRONT_PROBE_BED_POSITION can't be reached by the probe.
#error The given FRONT_PROBE_BED_POSITION can not be reached by the probe.
#elif BACK_PROBE_BED_POSITION > MAX_PROBE_Y
#error The given BACK_PROBE_BED_POSITION can't be reached by the probe.
#error The given BACK_PROBE_BED_POSITION can not be reached by the probe.
#endif

#define PROBE_SIZE_X (X_PROBE_OFFSET_FROM_EXTRUDER * (AUTO_BED_LEVELING_GRID_POINTS-1))
Expand Down

0 comments on commit 1ff6df8

Please sign in to comment.