summaryrefslogtreecommitdiff
path: root/source3/lib
diff options
context:
space:
mode:
authorRalph Boehme <slow@samba.org>2019-10-24 17:17:28 +0200
committerRalph Boehme <slow@samba.org>2019-10-30 13:23:42 +0000
commitf0c8ac47a4608eabeae334d39885aab98198b753 (patch)
treed228a58602bf46180622c46c81fd65a26824d910 /source3/lib
parentb63069db9fb6efb33b7b917cd5b0ee06b0da9cdc (diff)
downloadsamba-f0c8ac47a4608eabeae334d39885aab98198b753.tar.gz
lib/adouble: fix a long line
BUG: https://bugzilla.samba.org/show_bug.cgi?id=14171 Signed-off-by: Ralph Boehme <slow@samba.org> Reviewed-by: Stefan Metzmacher <metze@samba.org>
Diffstat (limited to 'source3/lib')
-rw-r--r--source3/lib/adouble.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/source3/lib/adouble.c b/source3/lib/adouble.c
index 5cac5dbd9bb..029645ffcea 100644
--- a/source3/lib/adouble.c
+++ b/source3/lib/adouble.c
@@ -2184,7 +2184,11 @@ static ssize_t ad_read_rsrc_adouble(vfs_handle_struct *handle,
ad->ad_data = p_ad;
}
- len = SMB_VFS_NEXT_PREAD(handle, ad->ad_fsp, ad->ad_data, talloc_array_length(ad->ad_data), 0);
+ len = SMB_VFS_NEXT_PREAD(handle,
+ ad->ad_fsp,
+ ad->ad_data,
+ talloc_array_length(ad->ad_data),
+ 0);
if (len != talloc_array_length(ad->ad_data)) {
DBG_NOTICE("%s %s: bad size: %zd\n",
smb_fname->base_name, strerror(errno), len);