CARLO TARALLO / Mbed OS time_Vibra
Revision:
5:0c6401d671c6
Parent:
2:c8b4159048f0
Child:
6:f1b1ceaae23e
--- a/main.cpp	Fri Jun 23 16:54:10 2017 -0500
+++ b/main.cpp	Tue Oct 23 12:08:10 2018 +0200
@@ -21,7 +21,7 @@
     while (true) {
         time_t seconds = time(NULL);
         
-        printf("Time as seconds since January 1, 1970 = %d\n", seconds);
+        printf("Time as seconds since January 1, 1970 = %u\n", (unsigned int)seconds);
         
         printf("Time as a basic string = %s", ctime(&seconds));