svn commit: r338539 - head/sys/arm/arm

Mark Johnston markj at FreeBSD.org
Sat Sep 8 23:39:27 UTC 2018


Author: markj
Date: Sat Sep  8 23:39:26 2018
New Revision: 338539
URL: https://svnweb.freebsd.org/changeset/base/338539

Log:
  Fix the 32-bit arm build.
  
  X-MFC with:     r338537
  Approved by:	re (rgrimes)
  Sponsored by:	The FreeBSD Foundation

Modified:
  head/sys/arm/arm/physmem.c

Modified: head/sys/arm/arm/physmem.c
==============================================================================
--- head/sys/arm/arm/physmem.c	Sat Sep  8 21:52:44 2018	(r338538)
+++ head/sys/arm/arm/physmem.c	Sat Sep  8 23:39:26 2018	(r338539)
@@ -373,7 +373,8 @@ arm_physmem_exclude_region(vm_paddr_t pa, vm_size_t sz
 	sz  = round_page(sz + adj);
 
 	if (excnt >= nitems(exregions))
-		panic("failed to exclude region %#lx-%#lx", pa, pa + sz);
+		panic("failed to exclude region %#jx-%#jx", (uintmax_t)pa,
+		    (uintmax_t)(pa + sz));
 	excnt = insert_region(exregions, excnt, pa, sz, exflags);
 }
 


More information about the svn-src-all mailing list