From: Ralph Boehme Date: Wed, 20 May 2020 14:43:11 +0000 (+0200) Subject: vfs_aio_pthread: realign create_private_open_data args X-Git-Tag: ldb-2.2.0~405 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dc061a23b45b06fdb6ee166cb822bd68fe1c33a3;p=thirdparty%2Fsamba.git vfs_aio_pthread: realign create_private_open_data args Signed-off-by: Ralph Boehme Reviewed-by: Jeremy Allison --- diff --git a/source3/modules/vfs_aio_pthread.c b/source3/modules/vfs_aio_pthread.c index 65a7c28e7b3..89d3253a1e4 100644 --- a/source3/modules/vfs_aio_pthread.c +++ b/source3/modules/vfs_aio_pthread.c @@ -246,11 +246,12 @@ static void opd_free(struct aio_open_private_data *opd) Create and initialize a private data struct for async open. ***********************************************************************/ -static struct aio_open_private_data *create_private_open_data(TALLOC_CTX *ctx, - const struct smb_filename *smb_fname, - const files_struct *fsp, - int flags, - mode_t mode) +static struct aio_open_private_data *create_private_open_data( + TALLOC_CTX *ctx, + const struct smb_filename *smb_fname, + const files_struct *fsp, + int flags, + mode_t mode) { struct aio_open_private_data *opd = talloc_zero(ctx, struct aio_open_private_data);