From 9105963e2c5944dc00d7c28f12c58d1383a1215b Mon Sep 17 00:00:00 2001 From: Przemek Wirkus Date: Tue, 11 Mar 2014 15:37:43 +0000 Subject: [PATCH] Removed trailing spaces --- libraries/tests/mbed/echo/main.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libraries/tests/mbed/echo/main.cpp b/libraries/tests/mbed/echo/main.cpp index e514dc72f9..583e9d884d 100644 --- a/libraries/tests/mbed/echo/main.cpp +++ b/libraries/tests/mbed/echo/main.cpp @@ -10,13 +10,13 @@ int main() { char buf[256]; - + Serial pc(TXPIN, RXPIN); pc.baud(115200); - + while (1) { pc.gets(buf, 256); - + pc.printf("%s", buf); } }