2010-01-27 Robert Millan <rmh.grub@aybabtu.com>
Remove unused parameter. * fs/iso9660.c (struct grub_iso9660_data): Remove `length' parameter. (grub_iso9660_open): Remove initialization of `data->length'.
This commit is contained in:
parent
af75a9f19a
commit
c294d9d812
2 changed files with 7 additions and 2 deletions
|
@ -1,3 +1,10 @@
|
|||
2010-01-27 Robert Millan <rmh.grub@aybabtu.com>
|
||||
|
||||
Remove unused parameter.
|
||||
|
||||
* fs/iso9660.c (struct grub_iso9660_data): Remove `length' parameter.
|
||||
(grub_iso9660_open): Remove initialization of `data->length'.
|
||||
|
||||
2010-01-27 Robert Millan <rmh.grub@aybabtu.com>
|
||||
|
||||
* util/grub-fstest.c (fstest): Rewrite allocation, fixing a few
|
||||
|
|
|
@ -136,7 +136,6 @@ struct grub_iso9660_data
|
|||
struct grub_iso9660_primary_voldesc voldesc;
|
||||
grub_disk_t disk;
|
||||
unsigned int first_sector;
|
||||
unsigned int length;
|
||||
int rockridge;
|
||||
int susp_skip;
|
||||
int joliet;
|
||||
|
@ -744,7 +743,6 @@ grub_iso9660_open (struct grub_file *file, const char *name)
|
|||
goto fail;
|
||||
|
||||
data->first_sector = foundnode->blk;
|
||||
data->length = foundnode->size;
|
||||
|
||||
file->data = data;
|
||||
file->size = foundnode->size;
|
||||
|
|
Loading…
Reference in a new issue