summaryrefslogtreecommitdiffstats
path: root/cpukit/rtems/src/clocktodtoseconds.c
diff options
context:
space:
mode:
authorGedare Bloom <gedare@rtems.org>2016-06-23 14:40:43 -0400
committerGedare Bloom <gedare@rtems.org>2016-07-25 12:44:47 -0400
commit10e40002219520651e5f0f2ed6388181f854895c (patch)
tree4fc4d63ace4679d433b5911336b32e5caccef557 /cpukit/rtems/src/clocktodtoseconds.c
parentposix: add clock_nanosleep and tests (diff)
downloadrtems-10e40002219520651e5f0f2ed6388181f854895c.tar.bz2
cpukit/rtems: fix return type mismatch for _TOD_To_seconds
Diffstat (limited to 'cpukit/rtems/src/clocktodtoseconds.c')
-rw-r--r--cpukit/rtems/src/clocktodtoseconds.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpukit/rtems/src/clocktodtoseconds.c b/cpukit/rtems/src/clocktodtoseconds.c
index bab9f85a7f..99d0cbdc5b 100644
--- a/cpukit/rtems/src/clocktodtoseconds.c
+++ b/cpukit/rtems/src/clocktodtoseconds.c
@@ -42,7 +42,7 @@ const uint16_t _TOD_Days_to_date[2][13] = {
const uint16_t _TOD_Days_since_last_leap_year[4] = { 0, 366, 731, 1096 };
-uint32_t _TOD_To_seconds(
+Watchdog_Interval _TOD_To_seconds(
const rtems_time_of_day *the_tod
)
{