Date: Wed, 27 Apr 2005 18:58:52 GMT From: John Baldwin <jhb@FreeBSD.org> To: Perforce Change Reviews <perforce@freebsd.org> Subject: PERFORCE change 76085 for review Message-ID: <200504271858.j3RIwqgC051677@repoman.freebsd.org>
next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=76085 Change 76085 by jhb@jhb_twclab on 2005/04/27 18:58:02 IFC to get compile fix. Affected files ... .. //depot/projects/smpng/sys/vm/vm_pageq.c#13 integrate Differences ... ==== //depot/projects/smpng/sys/vm/vm_pageq.c#13 (text+ko) ==== @@ -26,7 +26,7 @@ */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD: src/sys/vm/vm_pageq.c,v 1.15 2005/04/15 21:45:02 jhb Exp $"); +__FBSDID("$FreeBSD: src/sys/vm/vm_pageq.c,v 1.16 2005/04/16 12:37:16 des Exp $"); #include <sys/param.h> #include <sys/systm.h> @@ -130,7 +130,8 @@ break; } if (pa == trunc_page(bad)) { - printf("Skipping page with pa 0x%x\n", pa); + printf("Skipping page with pa 0x%jx\n", + (uintmax_t)pa); freeenv(list); return (NULL); }
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200504271858.j3RIwqgC051677>