diff options
Diffstat (limited to 'source4/ntvfs/posix/pvfs_notify.c')
| -rw-r--r-- | source4/ntvfs/posix/pvfs_notify.c | 8 | 
1 files changed, 5 insertions, 3 deletions
diff --git a/source4/ntvfs/posix/pvfs_notify.c b/source4/ntvfs/posix/pvfs_notify.c index 210f949395..06d2bc8e0c 100644 --- a/source4/ntvfs/posix/pvfs_notify.c +++ b/source4/ntvfs/posix/pvfs_notify.c @@ -268,9 +268,11 @@ NTSTATUS pvfs_notify(struct ntvfs_module_context *ntvfs,  	/* if the buffer is empty then start waiting */  	if (f->notify_buffer->num_changes == 0) { -		void *wait_handle = -			pvfs_wait_message(pvfs, req, -1, timeval_zero(),  -					  pvfs_notify_end, f->notify_buffer); +		struct pvfs_wait *wait_handle; +		wait_handle = pvfs_wait_message(pvfs, req, -1, +						timeval_zero(), +						pvfs_notify_end, +						f->notify_buffer);  		NT_STATUS_HAVE_NO_MEMORY(wait_handle);  		talloc_steal(req, wait_handle);  		return NT_STATUS_OK;  | 
