diff options
author | Bruce Evans <bde@FreeBSD.org> | 1998-07-15 02:32:35 +0000 |
---|---|---|
committer | Bruce Evans <bde@FreeBSD.org> | 1998-07-15 02:32:35 +0000 |
commit | a23d65bfc81ba69197bec5dcc814e36783f02f46 (patch) | |
tree | 8ea1483624c6c26a321a15abba7f299f7726ac5d /sys/miscfs/procfs | |
parent | aad7cac45af92ed232797abde2e4506b80046c1e (diff) | |
download | src-a23d65bfc81ba69197bec5dcc814e36783f02f46.tar.gz src-a23d65bfc81ba69197bec5dcc814e36783f02f46.zip |
Cast pointers to uintptr_t/intptr_t instead of to u_long/long,
respectively. Most of the longs should probably have been
u_longs, but this changes is just to prevent warnings about
casts between pointers and integers of different sizes, not
to fix poorly chosen types.
Notes
Notes:
svn path=/head/; revision=37649
Diffstat (limited to 'sys/miscfs/procfs')
-rw-r--r-- | sys/miscfs/procfs/procfs_mem.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/miscfs/procfs/procfs_mem.c b/sys/miscfs/procfs/procfs_mem.c index 27cb4f5205b2..c1012f1cb253 100644 --- a/sys/miscfs/procfs/procfs_mem.c +++ b/sys/miscfs/procfs/procfs_mem.c @@ -37,7 +37,7 @@ * * @(#)procfs_mem.c 8.5 (Berkeley) 6/15/94 * - * $Id: procfs_mem.c,v 1.32 1998/05/19 00:00:14 tegge Exp $ + * $Id: procfs_mem.c,v 1.33 1998/06/07 17:11:57 dfr Exp $ */ /* @@ -159,7 +159,7 @@ procfs_rwmem(curp, p, uio) fill_eproc (p, &p->p_addr->u_kproc.kp_eproc); /* locate the in-core address */ - tkva = (u_long)p->p_addr + uva - VM_MAXUSER_ADDRESS; + tkva = (uintptr_t)p->p_addr + uva - VM_MAXUSER_ADDRESS; /* transfer it */ error = uiomove((caddr_t)tkva, len, uio); |