svn commit: r323322 - head/sys/compat/freebsd32

Maxim Sobolev sobomax at FreeBSD.org
Fri Sep 8 18:32:14 UTC 2017


Author: sobomax
Date: Fri Sep  8 18:32:13 2017
New Revision: 323322
URL: https://svnweb.freebsd.org/changeset/base/323322

Log:
  Correct bintime32 declaration: uint32_t sec -> time32_t sec.
  
  Submitted by:	jhb
  MFC after:	1 month

Modified:
  head/sys/compat/freebsd32/freebsd32.h

Modified: head/sys/compat/freebsd32/freebsd32.h
==============================================================================
--- head/sys/compat/freebsd32/freebsd32.h	Fri Sep  8 18:03:34 2017	(r323321)
+++ head/sys/compat/freebsd32/freebsd32.h	Fri Sep  8 18:32:13 2017	(r323322)
@@ -79,7 +79,7 @@ struct itimerspec32 {
 } while (0)
 
 struct bintime32 {
-	uint32_t sec;
+	time32_t sec;
 	uint32_t frac[2];
 };
 #define BT_CP(src, dst, fld) do {				\


More information about the svn-src-head mailing list