summaryrefslogtreecommitdiff
path: root/source3/modules/vfs_cacheprime.c
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2008-01-10 15:33:51 +0100
committerMichael Adam <obnox@samba.org>2008-01-10 15:33:51 +0100
commit1d66f4d58b5fdd9c4e0c022cd2724e05d144510b (patch)
treeb0a4dd0969ac0edf00d0984a60134a6cac6b8590 /source3/modules/vfs_cacheprime.c
parentba2a2552822ded95358c11972005f2c353580439 (diff)
downloadsamba-1d66f4d58b5fdd9c4e0c022cd2724e05d144510b.tar.gz
samba-1d66f4d58b5fdd9c4e0c022cd2724e05d144510b.tar.bz2
samba-1d66f4d58b5fdd9c4e0c022cd2724e05d144510b.zip
Remove redundant parameter fd from SMB_VFS_READ().
Michael (This used to be commit a8fc2ddad8d5f7c6c00cb36c74a32a02d69d1d04)
Diffstat (limited to 'source3/modules/vfs_cacheprime.c')
-rw-r--r--source3/modules/vfs_cacheprime.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/modules/vfs_cacheprime.c b/source3/modules/vfs_cacheprime.c
index 6eb74e66ed..4ac78437c3 100644
--- a/source3/modules/vfs_cacheprime.c
+++ b/source3/modules/vfs_cacheprime.c
@@ -154,7 +154,7 @@ static ssize_t cprime_read(
SMB_VFS_LSEEK(fsp, fd, offset, SEEK_SET);
}
- return SMB_VFS_NEXT_READ(handle, fsp, fd, data, count);
+ return SMB_VFS_NEXT_READ(handle, fsp, data, count);
}
static ssize_t cprime_pread(