PERFORCE change 230214 for review

John Baldwin jhb at FreeBSD.org
Thu Jun 27 01:21:14 UTC 2013


http://p4web.freebsd.org/@@230214?ac=10

Change 230214 by jhb at jhb_pipkin on 2013/06/27 01:21:13

	Fix build on i386.

Affected files ...

.. //depot/projects/pci/sys/dev/pci/pci_pci.c#32 edit

Differences ...

==== //depot/projects/pci/sys/dev/pci/pci_pci.c#32 (text+ko) ====

@@ -1237,8 +1237,8 @@
 		}
 		if (bootverbose)
 			device_printf(sc->dev,
-			    "allocated initial %s window of %#lx-%#lx\n",
-			    w->name, w->base, w->limit);
+			    "allocated initial %s window of %#jx-%#jx\n",
+			    w->name, (uintmax_t)w->base, (uintmax_t)w->limit);
 		goto updatewin;
 	}
 
@@ -1348,8 +1348,8 @@
 	if (error)
 		return (error);
 	if (bootverbose)
-		device_printf(sc->dev, "grew %s window to %#lx-%#lx\n",
-		    w->name, w->base, w->limit);
+		device_printf(sc->dev, "grew %s window to %#jx-%#jx\n",
+		    w->name, (uintmax_t)w->base, (uintmax_t)w->limit);
 
 updatewin:
 	/* Write the new window. */


More information about the p4-projects mailing list