Fixed a printf format error. It was old and should have been detected by

gcc-2.9x, but somehow wasn't fixed already.
This commit is contained in:
bde 2002-05-25 10:48:03 +00:00
parent f1289233c9
commit 7ef784fa6c

View File

@ -258,7 +258,7 @@ svr4_sys_getdents64(td, uap)
int ncookies;
DPRINTF(("svr4_sys_getdents64(%d, *, %d)\n",
td->td_proc->p_pid, SCARG(uap, fd), SCARG(uap, nbytes)));
SCARG(uap, fd), SCARG(uap, nbytes)));
if ((error = getvnode(td->td_proc->p_fd, SCARG(uap, fd), &fp)) != 0) {
return (error);
}