mbed_example / Mbed OS time_HelloWorld

Fork of time_HelloWorld by Mbed

Files at this revision

API Documentation at this revision

Comitter:
Przemyslaw Stekiel
Date:
Tue Oct 23 12:08:10 2018 +0200
Parent:
4:3d395620e01a
Commit message:
fix compiler warning

Changed in this revision

main.cpp Show annotated file Show diff for this revision Revisions of this file
--- 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));