Fixed a cast in olseek().
Fixed confusing order of declarations of getvnode()'s args.
This commit is contained in:
parent
85117b8b7e
commit
7bd8f31743
@ -36,7 +36,7 @@
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* @(#)vfs_syscalls.c 8.13 (Berkeley) 4/15/94
|
||||
* $Id: vfs_syscalls.c,v 1.37 1995/11/05 21:01:01 dyson Exp $
|
||||
* $Id: vfs_syscalls.c,v 1.38 1995/11/12 06:43:07 bde Exp $
|
||||
*/
|
||||
|
||||
#include <sys/param.h>
|
||||
@ -1068,7 +1068,7 @@ olseek(p, uap, retval)
|
||||
nuap.fd = uap->fd;
|
||||
nuap.offset = uap->offset;
|
||||
nuap.whence = uap->whence;
|
||||
error = lseek(p, &nuap, &qret);
|
||||
error = lseek(p, &nuap, (int *)&qret);
|
||||
*(long *)retval = qret;
|
||||
return (error);
|
||||
}
|
||||
@ -2312,8 +2312,8 @@ revoke(p, uap, retval)
|
||||
int
|
||||
getvnode(fdp, fd, fpp)
|
||||
struct filedesc *fdp;
|
||||
struct file **fpp;
|
||||
int fd;
|
||||
struct file **fpp;
|
||||
{
|
||||
struct file *fp;
|
||||
|
||||
|
@ -36,7 +36,7 @@
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* @(#)vfs_syscalls.c 8.13 (Berkeley) 4/15/94
|
||||
* $Id: vfs_syscalls.c,v 1.37 1995/11/05 21:01:01 dyson Exp $
|
||||
* $Id: vfs_syscalls.c,v 1.38 1995/11/12 06:43:07 bde Exp $
|
||||
*/
|
||||
|
||||
#include <sys/param.h>
|
||||
@ -1068,7 +1068,7 @@ olseek(p, uap, retval)
|
||||
nuap.fd = uap->fd;
|
||||
nuap.offset = uap->offset;
|
||||
nuap.whence = uap->whence;
|
||||
error = lseek(p, &nuap, &qret);
|
||||
error = lseek(p, &nuap, (int *)&qret);
|
||||
*(long *)retval = qret;
|
||||
return (error);
|
||||
}
|
||||
@ -2312,8 +2312,8 @@ revoke(p, uap, retval)
|
||||
int
|
||||
getvnode(fdp, fd, fpp)
|
||||
struct filedesc *fdp;
|
||||
struct file **fpp;
|
||||
int fd;
|
||||
struct file **fpp;
|
||||
{
|
||||
struct file *fp;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user