aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sys/miscfs/procfs/procfs_regs.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/miscfs/procfs/procfs_regs.c b/sys/miscfs/procfs/procfs_regs.c
index 84be07d038dd..b0e9ea842c3f 100644
--- a/sys/miscfs/procfs/procfs_regs.c
+++ b/sys/miscfs/procfs/procfs_regs.c
@@ -57,8 +57,6 @@ procfs_doregs(curp, p, pfs, uio)
{
int error;
struct reg r;
- char *kv;
- int kl;
/* Can't trace a process that's currently exec'ing. */
if ((p->p_flag & P_INEXEC) != 0)
@@ -70,7 +68,7 @@ procfs_doregs(curp, p, pfs, uio)
error = procfs_read_regs(p, &r);
if (error == 0)
- error = uiomove(&r, sizeof(r), uio);
+ error = uiomove_frombuf(&r, sizeof(r), uio);
if (error == 0 && uio->uio_rw == UIO_WRITE) {
if (p->p_stat != SSTOP)
error = EBUSY;