Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Diff: main.cpp
- 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));