vfs_aio_pthread: realign create_private_open_data args
authorRalph Boehme <slow@samba.org>
Wed, 20 May 2020 14:43:11 +0000 (16:43 +0200)
committerJeremy Allison <jra@samba.org>
Thu, 21 May 2020 20:38:31 +0000 (20:38 +0000)
Signed-off-by: Ralph Boehme <slow@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
source3/modules/vfs_aio_pthread.c

index 65a7c28e7b31238fe5911876b1cc492eda7bb43b..89d3253a1e4210a6539653d9cb86c1bb5ffa7dc1 100644 (file)
@@ -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);