Make this compile after last commit. It should be:

"td ? td->td_proc : NULL", not "td ? td->td_proc, NULL"
This commit is contained in:
Peter Wemm 2001-10-09 02:40:45 +00:00
parent 41036d782d
commit caf4b18ba9

View File

@ -1364,7 +1364,7 @@ static int
nfs_msg(struct thread *td, char *server, char *msg)
{
tprintf(td ? td->td_proc, NULL, LOG_INFO,
tprintf(td ? td->td_proc : NULL, LOG_INFO,
"nfs server %s: %s\n", server, msg);
return (0);
}