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.
Fork of time_HelloWorld by
Revision 5:0c6401d671c6, committed 2018-10-23
- 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));