svn commit: r314035 - head/sys/x86/x86

Andriy Gapon avg at FreeBSD.org
Tue Feb 21 09:33:22 UTC 2017


Author: avg
Date: Tue Feb 21 09:33:21 2017
New Revision: 314035
URL: https://svnweb.freebsd.org/changeset/base/314035

Log:
  mca: change type of last_intr to time_t for consinstency
  
  time_uptime is time_t
  
  MFC after:	1 day
  X-MFC with:	r313752

Modified:
  head/sys/x86/x86/mca.c

Modified: head/sys/x86/x86/mca.c
==============================================================================
--- head/sys/x86/x86/mca.c	Tue Feb 21 09:29:46 2017	(r314034)
+++ head/sys/x86/x86/mca.c	Tue Feb 21 09:33:21 2017	(r314035)
@@ -73,7 +73,7 @@ enum scan_mode {
  */
 struct cmc_state {
 	int	max_threshold;
-	int	last_intr;
+	time_t	last_intr;
 };
 #endif
 


More information about the svn-src-head mailing list