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 mbed-src by
Diff: common/us_ticker_api.c
- Revision:
- 453:a290c6acf95e
- Parent:
- 452:a2b30f7d1bc5
- Child:
- 481:ca51ab3eed5a
diff -r a2b30f7d1bc5 -r a290c6acf95e common/us_ticker_api.c --- a/common/us_ticker_api.c Mon Jan 26 14:15:07 2015 +0000 +++ b/common/us_ticker_api.c Mon Jan 26 17:45:07 2015 +0000 @@ -70,7 +70,7 @@ ticker_event_t *prev = NULL, *p = head; while (p != NULL) { /* check if we come before p */ - if ((signedTimestamp_t)(timestamp - p->timestamp) < 0) { + if ((int)(timestamp - p->timestamp) < 0) { break; } /* go to the next element */