From 48f30272011261ee4fc4dbeb6c86ea6cf220059c Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Tue, 10 Nov 2009 23:29:57 +0000 Subject: 2009-11-10 Jennifer Averett PR 1468/cpukit * score/src/timespecdividebyinteger.c: Rework statement to ensure 64-bit multiplication is used. --- cpukit/score/src/timespecdividebyinteger.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'cpukit/score/src') diff --git a/cpukit/score/src/timespecdividebyinteger.c b/cpukit/score/src/timespecdividebyinteger.c index eecd7c4e30..34a719a577 100644 --- a/cpukit/score/src/timespecdividebyinteger.c +++ b/cpukit/score/src/timespecdividebyinteger.c @@ -34,7 +34,8 @@ void _Timespec_Divide_by_integer( * For math simplicity just convert the timespec to nanoseconds * in a 64-bit integer. */ - t = time->tv_sec * TOD_NANOSECONDS_PER_SECOND; + t = time->tv_sec; + t *= TOD_NANOSECONDS_PER_SECOND; t += time->tv_nsec; /* -- cgit v1.2.3