Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 27 Jun 2013 01:21:13 GMT
From:      John Baldwin <jhb@FreeBSD.org>
To:        Perforce Change Reviews <perforce@FreeBSD.org>
Subject:   PERFORCE change 230214 for review
Message-ID:  <201306270121.r5R1LDhW019031@skunkworks.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://p4web.freebsd.org/@@230214?ac=10

Change 230214 by jhb@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. */



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