Adapt the type used for adjtime_delta

clock_t is currently a signed type, but in NetBSD this is not the
case. As we plan on aligning our types we have to change this as this
prevents negative delta from being correctly used.

Change-Id: I9bccdee2b41626b0262471dc1900de505a1991a7
This commit is contained in:
2013-08-23 20:27:27 +02:00
parent 84a7c3f464
commit e8e506f2a0
3 changed files with 5 additions and 4 deletions

View File

@@ -17,7 +17,8 @@
*===========================================================================*/
int do_settime(struct proc * caller, message * m_ptr)
{
clock_t newclock, ticks;
clock_t newclock;
int32_t ticks;
time_t timediff;
signed long long timediff_ticks;