[Midnightbsd-cvs] src [8326] trunk/sys/kern/kern_umtx.c: should be int32_t and not uint32_t
laffer1 at midnightbsd.org
laffer1 at midnightbsd.org
Sat Sep 17 18:49:55 EDT 2016
Revision: 8326
http://svnweb.midnightbsd.org/src/?rev=8326
Author: laffer1
Date: 2016-09-17 18:49:55 -0400 (Sat, 17 Sep 2016)
Log Message:
-----------
should be int32_t and not uint32_t
Modified Paths:
--------------
trunk/sys/kern/kern_umtx.c
Modified: trunk/sys/kern/kern_umtx.c
===================================================================
--- trunk/sys/kern/kern_umtx.c 2016-09-17 22:49:27 UTC (rev 8325)
+++ trunk/sys/kern/kern_umtx.c 2016-09-17 22:49:55 UTC (rev 8326)
@@ -3364,8 +3364,8 @@
}
struct timespec32 {
- uint32_t tv_sec;
- uint32_t tv_nsec;
+ int32_t tv_sec;
+ int32_t tv_nsec;
};
static inline int
More information about the Midnightbsd-cvs
mailing list