Casts to squelch warnings.

svn path=/trunk/; revision=38567
This commit is contained in:
Guy Harris 2011-08-16 17:23:39 +00:00
parent 7eabf9ef2d
commit c19d21e6ac
1 changed files with 2 additions and 2 deletions

View File

@ -814,8 +814,8 @@ calcNT3(nstime_t *OT1, nstime_t *OT3, nstime_t *NT1, nstime_t *NT3,
secs -= 1;
nsecs += 1000000000L;
}
NT3->secs = secs;
NT3->nsecs = nsecs;
NT3->secs = (time_t)secs;
NT3->nsecs = (int)nsecs;
nstime_add(NT3, NT1);
}