diff options
author | Jacques Vidrine <nectar@FreeBSD.org> | 2003-10-04 16:14:25 +0000 |
---|---|---|
committer | Jacques Vidrine <nectar@FreeBSD.org> | 2003-10-04 16:14:25 +0000 |
commit | a0ab40adc961047ed4bf36762cb3e5d9f5e8637d (patch) | |
tree | 650974c652abb70c748e90552d78a7f9823ec580 | |
parent | 9b40b7f2d228a8eee748908b87e23ab7e54b694d (diff) |
Notes
-rw-r--r-- | sys/miscfs/procfs/procfs_regs.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/miscfs/procfs/procfs_regs.c b/sys/miscfs/procfs/procfs_regs.c index 8604d0a4a9a76..415c007ebbf11 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; |