From c6a3f1fc92022a50df8585a06ffaf47a022dc753 Mon Sep 17 00:00:00 2001 From: Robert Watson Date: Thu, 15 Aug 2002 22:12:53 +0000 Subject: For some reason, the flags and td arguments in the fo_read prototype were reversed. Correct this with no functional change. --- sys/sys/file.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/sys/file.h b/sys/sys/file.h index ca6cc055b9168..d2e31d23db51f 100644 --- a/sys/sys/file.h +++ b/sys/sys/file.h @@ -194,8 +194,8 @@ fo_read(fp, uio, active_cred, flags, td) struct file *fp; struct uio *uio; struct ucred *active_cred; - struct thread *td; int flags; + struct thread *td; { return ((*fp->f_ops->fo_read)(fp, uio, active_cred, flags, td)); -- cgit v1.3