From 4ce2cf2199c88f2845bf3bf861407642d6cd04d2 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Fri, 21 Jan 2005 06:56:13 +0000 Subject: r4887: removed a bogus cast (This used to be commit a034556faa5d15fee44a58be3aea8aee8ffae3c8) --- source4/ntvfs/posix/pvfs_xattr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source4/ntvfs/posix') diff --git a/source4/ntvfs/posix/pvfs_xattr.c b/source4/ntvfs/posix/pvfs_xattr.c index ca535db168..c930fcbd68 100644 --- a/source4/ntvfs/posix/pvfs_xattr.c +++ b/source4/ntvfs/posix/pvfs_xattr.c @@ -131,7 +131,7 @@ static NTSTATUS pvfs_xattr_ndr_save(struct pvfs_state *pvfs, DATA_BLOB blob; NTSTATUS status; - status = ndr_push_struct_blob(&blob, mem_ctx, p, (ndr_push_flags_fn_t)push_fn); + status = ndr_push_struct_blob(&blob, mem_ctx, p, push_fn); if (!NT_STATUS_IS_OK(status)) { talloc_free(mem_ctx); return status; -- cgit