summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/src/posixtimespecsubtract.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2002-12-02 19:15:24 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2002-12-02 19:15:24 +0000
commit35ee867eb90e35aa1084c75dbaf224be80a6e226 (patch)
tree951c6538dd4628955afa4b430f9ed67032926238 /cpukit/posix/src/posixtimespecsubtract.c
parent2002-12-02 Joel Sherrill <joel@OARcorp.com> (diff)
downloadrtems-35ee867eb90e35aa1084c75dbaf224be80a6e226.tar.bz2
2002-12-02 Joel Sherrill <joel@OARcorp.com>
* include/rtems/posix/timer.h, src/keygetspecific.c, src/posixtimespecsubtract.c, src/ptimer1.c, src/semunlink.c: Added casts to eliminate warnings on 16-bit targets like the h8300.
Diffstat (limited to 'cpukit/posix/src/posixtimespecsubtract.c')
-rw-r--r--cpukit/posix/src/posixtimespecsubtract.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpukit/posix/src/posixtimespecsubtract.c b/cpukit/posix/src/posixtimespecsubtract.c
index 1b6cc75902..205730468a 100644
--- a/cpukit/posix/src/posixtimespecsubtract.c
+++ b/cpukit/posix/src/posixtimespecsubtract.c
@@ -31,7 +31,7 @@ void _POSIX_Timespec_subtract(
{
struct timespec start_struct = *the_start;
struct timespec *start = &start_struct;
- unsigned int nsecs_per_sec = TOD_NANOSECONDS_PER_SECOND;
+ unsigned32 nsecs_per_sec = TOD_NANOSECONDS_PER_SECOND;
if (end->tv_nsec < start->tv_nsec) {
int seconds = (start->tv_nsec - end->tv_nsec) / nsecs_per_sec + 1;