diff options
author | Peter Pearse <peter.pearse@arm.com> | 2007-05-18 16:47:03 +0100 |
---|---|---|
committer | Peter Pearse <peter.pearse@arm.com> | 2007-05-18 16:47:03 +0100 |
commit | 3e3b956906eba9e4ad7931581ecedaad10eccce8 (patch) | |
tree | 2f8d461030a62106c2314451ee149e9ab55e9a11 /fs | |
parent | fdda367561f0f6fb21d5b575402c0f9d2fd08e76 (diff) |
Reduce line lengths to 80 characters max.
Diffstat (limited to 'fs')
-rwxr-xr-x[-rw-r--r--] | fs/fat/fat.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/fs/fat/fat.c b/fs/fat/fat.c index 084ee44459e..3007608360a 100644..100755 --- a/fs/fat/fat.c +++ b/fs/fat/fat.c @@ -59,7 +59,8 @@ int disk_read (__u32 startblock, __u32 getsize, __u8 * bufptr) if (cur_dev == NULL) return -1; if (cur_dev->block_read) { - return cur_dev->block_read (cur_dev->dev, startblock, getsize, (unsigned long *)bufptr); + return cur_dev->block_read (cur_dev->dev + , startblock, getsize, (unsigned long *)bufptr); } return -1; } @@ -996,7 +997,8 @@ file_fat_detectfs(void) memcpy (vol_label, volinfo.volume_label, 11); vol_label[11] = '\0'; volinfo.fs_type[5]='\0'; - printf("Partition %d: Filesystem: %s \"%s\"\n",cur_part,volinfo.fs_type,vol_label); + printf("Partition %d: Filesystem: %s \"%s\"\n" + ,cur_part,volinfo.fs_type,vol_label); return 0; } |