From fa9b2a925da2035c7055d3424a3c017b076d9764 Mon Sep 17 00:00:00 2001
From: Scott Lahteine <sourcetree@thinkyhead.com>
Date: Sat, 2 Jul 2016 14:04:35 -0700
Subject: [PATCH] Tweak spacing in printcounter.cpp

---
 Marlin/printcounter.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Marlin/printcounter.cpp b/Marlin/printcounter.cpp
index 0c79087ffe..78e3630d35 100644
--- a/Marlin/printcounter.cpp
+++ b/Marlin/printcounter.cpp
@@ -88,7 +88,7 @@ void PrintCounter::showStats() {
   SERIAL_ECHO(this->data.totalPrints - this->data.finishedPrints
     - ((this->isRunning() || this->isPaused()) ? 1 : 0)); // Removes 1 from failures with an active counter
 
-  uint32_t t = this->data.printTime /60;
+  uint32_t t = this->data.printTime / 60;
   SERIAL_ECHOPGM(", Total print time: ");
   SERIAL_ECHO(t / 60);