Correct one more errant whitespace nit that crept in during changes

in the arguments to vn_rdwr().  Hopefully the last.
This commit is contained in:
rwatson 2002-08-20 02:21:38 +00:00
parent 6cbbcf7f28
commit 11f2a24707

View File

@ -380,7 +380,7 @@ cpu_coredump(td, vp, cred)
return error;
error = vn_rdwr(UIO_WRITE, vp, (caddr_t) td->td_kstack,
ctob(KSTACK_PAGES), (off_t)0,
UIO_SYSSPACE, IO_UNIT, cred, NOCRED,(int *)NULL, td);
UIO_SYSSPACE, IO_UNIT, cred, NOCRED, (int *)NULL, td);
return error;
}