diff options
author | Roland McGrath <roland@gnu.org> | 1996-01-04 21:11:20 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1996-01-04 21:11:20 +0000 |
commit | e03cff5daef56e8327f6d186ee136daf8f2cec67 (patch) | |
tree | 3b91e599b30f6c03fabbe8d99f827b12e02b476a | |
parent | ebc25fd0224e7651c4d3664c57d692638d2ab8d3 (diff) |
Fix args in _diskfs_rdwr_internal prototype.
-rw-r--r-- | libdiskfs/priv.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libdiskfs/priv.h b/libdiskfs/priv.h index fc5e8bdd..7148c8c7 100644 --- a/libdiskfs/priv.h +++ b/libdiskfs/priv.h @@ -1,5 +1,5 @@ /* Private declarations for fileserver library - Copyright (C) 1994, 1995 Free Software Foundation + Copyright (C) 1994, 1995, 1996 Free Software Foundation This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as @@ -62,8 +62,8 @@ end_using_protid_port (struct protid *cred) DIR is set for writing and clear for reading. The inode must be locked. If NOTIME is set, then don't update the access or modify times on the file. */ -error_t _diskfs_rdwr_internal (struct node *np, char *data, int offset, - int amt, int dir, int notime); +error_t _diskfs_rdwr_internal (struct node *np, char *data, off_t offset, + size_t *amt, int dir, int notime); /* Clean routine for control port. */ void _diskfs_control_clean (void *); |