sanitize const/signedness for udf

Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
This commit is contained in:
Al Viro
2010-01-31 21:28:48 -05:00
parent 072f98b463
commit 391e8bbd38
5 changed files with 19 additions and 19 deletions

View File

@@ -32,12 +32,12 @@
#include <linux/buffer_head.h>
#include "udf_i.h"
static void udf_pc_to_char(struct super_block *sb, char *from, int fromlen,
char *to)
static void udf_pc_to_char(struct super_block *sb, unsigned char *from,
int fromlen, unsigned char *to)
{
struct pathComponent *pc;
int elen = 0;
char *p = to;
unsigned char *p = to;
while (elen < fromlen) {
pc = (struct pathComponent *)(from + elen);
@@ -75,9 +75,9 @@ static int udf_symlink_filler(struct file *file, struct page *page)
{
struct inode *inode = page->mapping->host;
struct buffer_head *bh = NULL;
char *symlink;
unsigned char *symlink;
int err = -EIO;
char *p = kmap(page);
unsigned char *p = kmap(page);
struct udf_inode_info *iinfo;
lock_kernel();