summaryrefslogtreecommitdiffstats
path: root/fs/udf/inode.c
diff options
context:
space:
mode:
authorAl Viro2010-02-01 03:28:48 +0100
committerAl Viro2010-03-03 20:07:58 +0100
commit391e8bbd38474b9f85b1f3933394a79ea66fe1e2 (patch)
tree78298556c37ef09f4f87138bc1c391f4f5dee917 /fs/udf/inode.c
parentnilfs: sanitize const/signedness in dealing with ->d_name.name (diff)
downloadkernel-qcow2-linux-391e8bbd38474b9f85b1f3933394a79ea66fe1e2.tar.gz
kernel-qcow2-linux-391e8bbd38474b9f85b1f3933394a79ea66fe1e2.tar.xz
kernel-qcow2-linux-391e8bbd38474b9f85b1f3933394a79ea66fe1e2.zip
sanitize const/signedness for udf
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/udf/inode.c')
-rw-r--r--fs/udf/inode.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/udf/inode.c b/fs/udf/inode.c
index f90231eb2916..378a7592257c 100644
--- a/fs/udf/inode.c
+++ b/fs/udf/inode.c
@@ -1672,7 +1672,7 @@ int8_t udf_add_aext(struct inode *inode, struct extent_position *epos,
return -1;
if (epos->offset + (2 * adsize) > inode->i_sb->s_blocksize) {
- char *sptr, *dptr;
+ unsigned char *sptr, *dptr;
struct buffer_head *nbh;
int err, loffset;
struct kernel_lb_addr obloc = epos->block;