mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-17 10:26:15 +00:00
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:
parent
5eceedc5a0
commit
ba4be2110a
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=242202
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user