Fix bug in Line number handling
[clinton/Smoothieware.git] / src / modules / communication / GcodeDispatch.cpp
index ef6685e..bae5599 100644 (file)
@@ -49,7 +49,7 @@ try_again:
 
         //Get linenumber
         if ( first_char == 'N' ) {
-            Gcode full_line = Gcode(possible_command, new_message.stream);
+            Gcode full_line = Gcode(possible_command, new_message.stream, false);
             ln = (int) full_line.get_value('N');
             int chksum = (int) full_line.get_value('*');