diff options
author | Miles Bader <miles@gnu.org> | 1997-09-09 19:41:50 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 1997-09-09 19:41:50 +0000 |
commit | cdac18c62775472d33b22674ba0df20601e05d7d (patch) | |
tree | c3268a4710de3d83c1704dfdf54475434f2799b1 | |
parent | 27e5e5b6dea50befaef03c9862a6749ab633c9ed (diff) |
(netfs_S_dir_lookup):
Fix type signature of short_circuited_callback1.
-rw-r--r-- | libnetfs/dir-lookup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libnetfs/dir-lookup.c b/libnetfs/dir-lookup.c index 8899e110..89418010 100644 --- a/libnetfs/dir-lookup.c +++ b/libnetfs/dir-lookup.c @@ -201,7 +201,7 @@ netfs_S_dir_lookup (struct protid *diruser, S_ISLNK and S_IFSOCK are handled elsewhere. */ error_t short_circuited_callback1 (void *cookie1, void *cookie2, uid_t *uid, gid_t *gid, - char **argz, int *argz_len) + char **argz, size_t *argz_len) { struct node *np = cookie1; error_t err; |