commit | 391e8bbd38474b9f85b1f3933394a79ea66fe1e2 | [log] [tgz] |
---|---|---|
author | Al Viro <viro@zeniv.linux.org.uk> | Sun Jan 31 21:28:48 2010 -0500 |
committer | Al Viro <viro@zeniv.linux.org.uk> | Wed Mar 03 14:07:58 2010 -0500 |
tree | 78298556c37ef09f4f87138bc1c391f4f5dee917 | |
parent | 072f98b4637eddcbdf2178fc84f382e2ee522f08 [diff] [blame] |
sanitize const/signedness for udf Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
diff --git a/fs/udf/dir.c b/fs/udf/dir.c index 61d9a76..f0f2a43 100644 --- a/fs/udf/dir.c +++ b/fs/udf/dir.c
@@ -45,8 +45,8 @@ int block, iblock; loff_t nf_pos = (filp->f_pos - 1) << 2; int flen; - char *fname = NULL; - char *nameptr; + unsigned char *fname = NULL; + unsigned char *nameptr; uint16_t liu; uint8_t lfi; loff_t size = udf_ext0_offset(dir) + dir->i_size;