diff options
author | Michael Adam <obnox@samba.org> | 2016-02-05 11:32:18 +0100 |
---|---|---|
committer | Karolin Seeger <kseeger@samba.org> | 2016-03-04 11:40:10 +0100 |
commit | c4536f8cb4afd2bf95e8e780aab04c5949765361 (patch) | |
tree | 468ff856c8155c26a16ea8c1a06447e1df5756d0 /source3/modules/vfs_aio_pthread.c | |
parent | c17b1f697c388bd2e0190c4a3574d951b8be483e (diff) | |
download | samba-c4536f8cb4afd2bf95e8e780aab04c5949765361.tar.gz |
dlist: remove unneeded type argument from DLIST_ADD_END()
Signed-off-by: Michael Adam <obnox@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
(cherry picked from commit 476672b647e44898a6de8894b23e598ad13b1fcf)
Diffstat (limited to 'source3/modules/vfs_aio_pthread.c')
-rw-r--r-- | source3/modules/vfs_aio_pthread.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/modules/vfs_aio_pthread.c b/source3/modules/vfs_aio_pthread.c index 10a3a23100b..7037b633e5e 100644 --- a/source3/modules/vfs_aio_pthread.c +++ b/source3/modules/vfs_aio_pthread.c @@ -341,7 +341,7 @@ static struct aio_open_private_data *create_private_open_data(const files_struct } talloc_set_destructor(opd, opd_destructor); - DLIST_ADD_END(open_pd_list, opd, struct aio_open_private_data *); + DLIST_ADD_END(open_pd_list, opd); return opd; } |