summaryrefslogtreecommitdiffstats
path: root/cpukit/rtems/src/clocktodtoseconds.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/rtems/src/clocktodtoseconds.c')
-rw-r--r--cpukit/rtems/src/clocktodtoseconds.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/cpukit/rtems/src/clocktodtoseconds.c b/cpukit/rtems/src/clocktodtoseconds.c
index 7e251d7bdb..95e3efaaf9 100644
--- a/cpukit/rtems/src/clocktodtoseconds.c
+++ b/cpukit/rtems/src/clocktodtoseconds.c
@@ -32,12 +32,12 @@
* returns - seconds since epoch until the_tod
*/
-unsigned32 _TOD_To_seconds(
+uint32_t _TOD_To_seconds(
TOD_Control *the_tod
)
{
- unsigned32 time;
- unsigned32 year_mod_4;
+ uint32_t time;
+ uint32_t year_mod_4;
time = the_tod->day - 1;
year_mod_4 = the_tod->year & 3;