summaryrefslogtreecommitdiff
path: root/source4/ntvfs/posix/pvfs_wait.c
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2008-02-21 09:02:17 +0100
committerStefan Metzmacher <metze@samba.org>2008-02-25 07:55:09 +0100
commita0a0d4a5d0c24729a26a37ff54caa665de9149a2 (patch)
tree89dabecf2589f0c2e63d6f6599fe4cbfcf41b508 /source4/ntvfs/posix/pvfs_wait.c
parentfb6f52261a4cdbc529c04e28b29f82a8cbb9640f (diff)
downloadsamba-a0a0d4a5d0c24729a26a37ff54caa665de9149a2.tar.gz
samba-a0a0d4a5d0c24729a26a37ff54caa665de9149a2.tar.bz2
samba-a0a0d4a5d0c24729a26a37ff54caa665de9149a2.zip
pvfs_wait: use struct pvfs_wait * instead of void *
metze (This used to be commit 3b70331536d2402814db13a9f1f226a39373313a)
Diffstat (limited to 'source4/ntvfs/posix/pvfs_wait.c')
-rw-r--r--source4/ntvfs/posix/pvfs_wait.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/source4/ntvfs/posix/pvfs_wait.c b/source4/ntvfs/posix/pvfs_wait.c
index 838a801567..291250befd 100644
--- a/source4/ntvfs/posix/pvfs_wait.c
+++ b/source4/ntvfs/posix/pvfs_wait.c
@@ -131,12 +131,12 @@ static int pvfs_wait_destructor(struct pvfs_wait *pwait)
if msg_type == -1 then no message is registered, and it is assumed
that the caller handles any messaging setup needed
*/
-void *pvfs_wait_message(struct pvfs_state *pvfs,
- struct ntvfs_request *req,
- int msg_type,
- struct timeval end_time,
- void (*fn)(void *, enum pvfs_wait_notice),
- void *private_data)
+struct pvfs_wait *pvfs_wait_message(struct pvfs_state *pvfs,
+ struct ntvfs_request *req,
+ int msg_type,
+ struct timeval end_time,
+ void (*fn)(void *, enum pvfs_wait_notice),
+ void *private_data)
{
struct pvfs_wait *pwait;