The fields of struct timespec32 should be int32_t and not uint32_t.

Make this change.

Reviewed by:	bde, davidxu
Tested by:	pho
MFC after:	1 week
This commit is contained in:
Davide Italiano 2012-10-27 23:42:41 +00:00
parent 5eceedc5a0
commit ba4be2110a
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=242202

View File

@ -3291,8 +3291,8 @@ freebsd32_umtx_unlock(struct thread *td, struct freebsd32_umtx_unlock_args *uap)
}
struct timespec32 {
uint32_t tv_sec;
uint32_t tv_nsec;
int32_t tv_sec;
int32_t tv_nsec;
};
struct umtx_time32 {