svn commit: r351107 - head/sys/dev/ntb

Alexander Motin mav at FreeBSD.org
Thu Aug 15 23:56:20 UTC 2019


Author: mav
Date: Thu Aug 15 23:56:19 2019
New Revision: 351107
URL: https://svnweb.freebsd.org/changeset/base/351107

Log:
  Fix i386 build.
  
  MFC after:	2 weeks

Modified:
  head/sys/dev/ntb/ntb_transport.c

Modified: head/sys/dev/ntb/ntb_transport.c
==============================================================================
--- head/sys/dev/ntb/ntb_transport.c	Thu Aug 15 23:21:41 2019	(r351106)
+++ head/sys/dev/ntb/ntb_transport.c	Thu Aug 15 23:56:19 2019	(r351107)
@@ -380,7 +380,8 @@ ntb_transport_attach(device_t dev)
 		mw->tx_size = mw->phys_size;
 		if (max_mw_size != 0 && mw->tx_size > max_mw_size) {
 			device_printf(dev, "Memory window %d limited from "
-			    "%ju to %ju\n", i, mw->phys_size, max_mw_size);
+			    "%ju to %ju\n", i, (uintmax_t)mw->phys_size,
+			    max_mw_size);
 			mw->tx_size = max_mw_size;
 		}
 


More information about the svn-src-all mailing list