diff options
author | Markus Elfring <elfring@users.sourceforge.net> | 2017-08-15 16:45:44 +0200 |
---|---|---|
committer | Jan Kara <jack@suse.cz> | 2017-08-16 16:42:03 +0200 |
commit | 033c9da00893e90dcff0a714bcb5d66890ad818a (patch) | |
tree | 393a43641ee656ae66f408b85c2f74c7bf23c35f /fs/udf/namei.c | |
parent | ba2eb866a89df47d97893f8857d77e98c3c961e0 (diff) | |
download | linux-033c9da00893e90dcff0a714bcb5d66890ad818a.tar.bz2 |
fs-udf: Improve six size determinations
Replace the specification of data structures by variable references
as the parameter for the operator "sizeof" to make the corresponding size
determination a bit safer according to the Linux coding style convention.
Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
Signed-off-by: Jan Kara <jack@suse.cz>
Diffstat (limited to 'fs/udf/namei.c')
-rw-r--r-- | fs/udf/namei.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/udf/namei.c b/fs/udf/namei.c index 385ee89d5824..885198dfd9f8 100644 --- a/fs/udf/namei.c +++ b/fs/udf/namei.c @@ -1184,7 +1184,7 @@ static int udf_rename(struct inode *old_dir, struct dentry *old_dentry, */ ncfi.fileVersionNum = ocfi.fileVersionNum; ncfi.fileCharacteristics = ocfi.fileCharacteristics; - memcpy(&(ncfi.icb), &(ocfi.icb), sizeof(struct long_ad)); + memcpy(&(ncfi.icb), &(ocfi.icb), sizeof(ocfi.icb)); udf_write_fi(new_dir, &ncfi, nfi, &nfibh, NULL, NULL); /* The old fid may have moved - find it again */ |