Module Name: src
Committed By: matt
Date: Mon Dec 14 21:19:47 UTC 2009
Modified Files:
src/sys/uvm: uvm_map.c
Log Message:
Use PRIxVADDR ...
To generate a diff of this commit:
cvs rdiff -u -r1.284 -r1.285 src/sys/uvm/uvm_map.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/uvm/uvm_map.c
diff -u src/sys/uvm/uvm_map.c:1.284 src/sys/uvm/uvm_map.c:1.285
--- src/sys/uvm/uvm_map.c:1.284 Sat Nov 7 07:27:49 2009
+++ src/sys/uvm/uvm_map.c Mon Dec 14 21:19:47 2009
@@ -1,4 +1,4 @@
-/* $NetBSD: uvm_map.c,v 1.284 2009/11/07 07:27:49 cegger Exp $ */
+/* $NetBSD: uvm_map.c,v 1.285 2009/12/14 21:19:47 matt Exp $ */
/*
* Copyright (c) 1997 Charles D. Cranor and Washington University.
@@ -71,7 +71,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: uvm_map.c,v 1.284 2009/11/07 07:27:49 cegger Exp $");
+__KERNEL_RCSID(0, "$NetBSD: uvm_map.c,v 1.285 2009/12/14 21:19:47 matt Exp $");
#include "opt_ddb.h"
#include "opt_uvmhist.h"
@@ -572,7 +572,7 @@
goto error;
}
if (trtmp != NULL && trtmp->start >= tmp->start) {
- printf("corrupt: 0x%lx >= 0x%lx\n",
+ printf("corrupt: 0x%"PRIxVADDR"x >= 0x%"PRIxVADDR"x\n",
trtmp->start, tmp->start);
goto error;
}