From owner-p4-projects@FreeBSD.ORG Thu Jun 27 01:21:14 2013 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 57A64566; Thu, 27 Jun 2013 01:21:14 +0000 (UTC) Delivered-To: perforce@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 163DF564 for ; Thu, 27 Jun 2013 01:21:14 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from skunkworks.freebsd.org (skunkworks.freebsd.org [8.8.178.74]) by mx1.freebsd.org (Postfix) with ESMTP id 0829E1B0E for ; Thu, 27 Jun 2013 01:21:14 +0000 (UTC) Received: from skunkworks.freebsd.org ([127.0.1.74]) by skunkworks.freebsd.org (8.14.7/8.14.7) with ESMTP id r5R1LDqg019034 for ; Thu, 27 Jun 2013 01:21:13 GMT (envelope-from jhb@freebsd.org) Received: (from perforce@localhost) by skunkworks.freebsd.org (8.14.7/8.14.6/Submit) id r5R1LDhW019031 for perforce@freebsd.org; Thu, 27 Jun 2013 01:21:13 GMT (envelope-from jhb@freebsd.org) Date: Thu, 27 Jun 2013 01:21:13 GMT Message-Id: <201306270121.r5R1LDhW019031@skunkworks.freebsd.org> X-Authentication-Warning: skunkworks.freebsd.org: perforce set sender to jhb@freebsd.org using -f From: John Baldwin Subject: PERFORCE change 230214 for review To: Perforce Change Reviews Precedence: bulk X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.14 List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Jun 2013 01:21:14 -0000 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. */