i literally changed nothing. What is this?

Fork of Terminal by Simon Ford

Revision:
3:77e3f1825318
Parent:
2:85184c13476c
--- a/Terminal.cpp	Tue Nov 23 16:03:35 2010 +0000
+++ b/Terminal.cpp	Sun Oct 23 20:26:02 2016 +0000
@@ -32,7 +32,7 @@
 
 void Terminal::locate(int column, int row) {
     // Cursor Home    <ESC>[{ROW};{COLUMN}H
-    this->printf("\033[%d;%dH%c", row + 1, column + 1);
+    this->printf("\033[%d;%dH", row + 1, column + 1);
 }
 
 static int rgb888tobgr111(int colour) {