summaryrefslogtreecommitdiffstats
path: root/sys/vm/vm_kern.c
diff options
context:
space:
mode:
authorpeter <peter@FreeBSD.org>1999-07-01 19:53:43 +0000
committerpeter <peter@FreeBSD.org>1999-07-01 19:53:43 +0000
commit18cf795f279ca097b6da5a7eb2132a6727943d50 (patch)
tree0dc445945e4fe5083ff68497c854d565c1cc415d /sys/vm/vm_kern.c
parentf387b3be3def8d30d9e55922025a4016b0b90ae5 (diff)
downloadFreeBSD-src-18cf795f279ca097b6da5a7eb2132a6727943d50.zip
FreeBSD-src-18cf795f279ca097b6da5a7eb2132a6727943d50.tar.gz
Fix some int/long printf problems for the Alpha
Diffstat (limited to 'sys/vm/vm_kern.c')
-rw-r--r--sys/vm/vm_kern.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/vm/vm_kern.c b/sys/vm/vm_kern.c
index 531dab2..794c835 100644
--- a/sys/vm/vm_kern.c
+++ b/sys/vm/vm_kern.c
@@ -61,7 +61,7 @@
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
*
- * $Id: vm_kern.c,v 1.54 1999/03/16 07:39:07 alc Exp $
+ * $Id: vm_kern.c,v 1.55 1999/06/08 17:03:28 dt Exp $
*/
/*
@@ -330,8 +330,8 @@ kmem_malloc(map, size, flags)
return (0);
}
if ((flags & M_NOWAIT) == 0)
- panic("kmem_malloc(%d): kmem_map too small: %d total allocated",
- size, map->size);
+ panic("kmem_malloc(%ld): kmem_map too small: %ld total allocated",
+ (long)size, (long)map->size);
return (0);
}
offset = addr - VM_MIN_KERNEL_ADDRESS;
OpenPOWER on IntegriCloud