svn commit: r294885 - head/sys/sys

Justin Hibbits jhibbits at FreeBSD.org
Wed Jan 27 03:51:26 UTC 2016


Author: jhibbits
Date: Wed Jan 27 03:51:24 2016
New Revision: 294885
URL: https://svnweb.freebsd.org/changeset/base/294885

Log:
  Fix the build post-r294883.
  
  Pointy-hat to:	jhibbits
  X-MFC with:	r294883

Modified:
  head/sys/sys/rman.h

Modified: head/sys/sys/rman.h
==============================================================================
--- head/sys/sys/rman.h	Wed Jan 27 02:25:25 2016	(r294884)
+++ head/sys/sys/rman.h	Wed Jan 27 03:51:24 2016	(r294885)
@@ -82,7 +82,7 @@ struct u_rman {
 	char		rm_descr[RM_TEXTLEN];	/* rman description */
 
 	rman_res_t	rm_start;		/* base of managed region */
-	bus_size_t	rm_size;		/* size of managed region */
+	rman_res_t	rm_size;		/* size of managed region */
 	enum rman_type	rm_type;		/* region type */
 };
 


More information about the svn-src-head mailing list