2008-07-15 Pavel Roskin <proski@gnu.org>
* fs/ext2.c (grub_ext2_read_block): Initialize blknr in the beginning to avoid warnings with some compilers.
This commit is contained in:
parent
afc3b5d7c4
commit
ee01cf35f0
2 changed files with 4 additions and 2 deletions
|
@ -1,5 +1,8 @@
|
||||||
2008-07-15 Pavel Roskin <proski@gnu.org>
|
2008-07-15 Pavel Roskin <proski@gnu.org>
|
||||||
|
|
||||||
|
* fs/ext2.c (grub_ext2_read_block): Initialize blknr in the
|
||||||
|
beginning to avoid warnings with some compilers.
|
||||||
|
|
||||||
* loader/ieee1275/multiboot2.c: Include grub/machine/loader.h.
|
* loader/ieee1275/multiboot2.c: Include grub/machine/loader.h.
|
||||||
[__i386__] (grub_mb2_arch_boot): Avoid unnecessary cast.
|
[__i386__] (grub_mb2_arch_boot): Avoid unnecessary cast.
|
||||||
|
|
||||||
|
|
|
@ -336,7 +336,7 @@ grub_ext2_read_block (grub_fshelp_node_t node, grub_disk_addr_t fileblock)
|
||||||
{
|
{
|
||||||
struct grub_ext2_data *data = node->data;
|
struct grub_ext2_data *data = node->data;
|
||||||
struct grub_ext2_inode *inode = &node->inode;
|
struct grub_ext2_inode *inode = &node->inode;
|
||||||
int blknr;
|
int blknr = -1;
|
||||||
unsigned int blksz = EXT2_BLOCK_SIZE (data);
|
unsigned int blksz = EXT2_BLOCK_SIZE (data);
|
||||||
int log2_blksz = LOG2_EXT2_BLOCK_SIZE (data);
|
int log2_blksz = LOG2_EXT2_BLOCK_SIZE (data);
|
||||||
|
|
||||||
|
@ -428,7 +428,6 @@ grub_ext2_read_block (grub_fshelp_node_t node, grub_disk_addr_t fileblock)
|
||||||
{
|
{
|
||||||
grub_error (GRUB_ERR_NOT_IMPLEMENTED_YET,
|
grub_error (GRUB_ERR_NOT_IMPLEMENTED_YET,
|
||||||
"ext2fs doesn't support triple indirect blocks");
|
"ext2fs doesn't support triple indirect blocks");
|
||||||
blknr = -1;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return blknr;
|
return blknr;
|
||||||
|
|
Loading…
Reference in a new issue