Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 8 Sep 2017 18:32:13 +0000 (UTC)
From:      Maxim Sobolev <sobomax@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r323322 - head/sys/compat/freebsd32
Message-ID:  <201709081832.v88IWDI1069914@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 {				\



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201709081832.v88IWDI1069914>