Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 27 Jan 2016 03:51:25 +0000 (UTC)
From:      Justin Hibbits <jhibbits@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r294885 - head/sys/sys
Message-ID:  <201601270351.u0R3pPh1088413@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 */
 };
 



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