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:
Bruce Evans 2002-05-25 10:48:03 +00:00
parent b8b53eef91
commit 5cc5b1d344
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=97271

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);
}