From 427df8792dca818b0ff1ef90b75cfa7b686a3ba2 Mon Sep 17 00:00:00 2001
From: Scott Lahteine <github@thinkyhead.com>
Date: Thu, 28 Dec 2017 21:08:59 -0600
Subject: [PATCH] Fix Capabilities Report

---
 Marlin/src/gcode/host/M115.cpp | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Marlin/src/gcode/host/M115.cpp b/Marlin/src/gcode/host/M115.cpp
index 53068813ef..b5e8bd788b 100644
--- a/Marlin/src/gcode/host/M115.cpp
+++ b/Marlin/src/gcode/host/M115.cpp
@@ -27,6 +27,7 @@
   static void cap_line(const char * const name, bool ena=false) {
     SERIAL_PROTOCOLPGM("Cap:");
     serialprintPGM(name);
+    SERIAL_CHAR(':');
     SERIAL_PROTOCOLLN(int(ena ? 1 : 0));
   }
 #endif
-- 
GitLab