diff options
| author | John Polstra <jdp@FreeBSD.org> | 1999-02-08 19:08:13 +0000 |
|---|---|---|
| committer | John Polstra <jdp@FreeBSD.org> | 1999-02-08 19:08:13 +0000 |
| commit | 29fe61941208158d9ef9ce76136435a97f68d29a (patch) | |
| tree | c2b2080937bd5a8c8667b7d67b8027b9804dc50b | |
| parent | 12c7f78b7d6e0118492cf5f923031e7e5d2d2879 (diff) | |
Notes
| -rw-r--r-- | sys/miscfs/procfs/procfs_map.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/miscfs/procfs/procfs_map.c b/sys/miscfs/procfs/procfs_map.c index 4dae10a6fdc0..4ebc9c0f435b 100644 --- a/sys/miscfs/procfs/procfs_map.c +++ b/sys/miscfs/procfs/procfs_map.c @@ -36,7 +36,7 @@ * * @(#)procfs_status.c 8.3 (Berkeley) 2/17/94 * - * $Id: procfs_map.c,v 1.17 1998/04/29 04:28:22 dyson Exp $ + * $Id: procfs_map.c,v 1.18 1998/12/04 22:54:51 archie Exp $ */ #include <sys/param.h> @@ -154,8 +154,8 @@ case OBJT_DEVICE: * start, end, resident, private resident, cow, access, type. */ snprintf(mebuffer, sizeof(mebuffer), - "0x%x 0x%x %d %d %d %s%s%s %d %d 0x%x %s %s %s\n", - entry->start, entry->end, + "0x%lx 0x%lx %d %d %d %s%s%s %d %d 0x%x %s %s %s\n", + (u_long)entry->start, (u_long)entry->end, resident, privateresident, id, (entry->protection & VM_PROT_READ)?"r":"-", (entry->protection & VM_PROT_WRITE)?"w":"-", |
