* grub-core/partmap/apple.c (apple_partition_map_iterate): Add
missing closing bracket.
This commit is contained in:
parent
74a35e6985
commit
8c3635ff24
2 changed files with 7 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
2013-04-01 Radosław Szymczyszyn <lavrin@gmail.com>
|
||||
|
||||
* grub-core/partmap/apple.c (apple_partition_map_iterate): Add
|
||||
missing closing bracket.
|
||||
|
||||
2013-04-01 Radosław Szymczyszyn <lavrin@gmail.com>
|
||||
|
||||
* INSTALL: Mention xorriso requirement.
|
||||
|
|
|
@ -118,7 +118,7 @@ apple_partition_map_iterate (grub_disk_t disk,
|
|||
if (grub_be_to_cpu16 (aheader.magic) != GRUB_APPLE_HEADER_MAGIC)
|
||||
{
|
||||
grub_dprintf ("partition",
|
||||
"bad magic (found 0x%x; wanted 0x%x\n",
|
||||
"bad magic (found 0x%x; wanted 0x%x)\n",
|
||||
grub_be_to_cpu16 (aheader.magic),
|
||||
GRUB_APPLE_HEADER_MAGIC);
|
||||
goto fail;
|
||||
|
@ -138,7 +138,7 @@ apple_partition_map_iterate (grub_disk_t disk,
|
|||
if (grub_be_to_cpu16 (apart.magic) != GRUB_APPLE_PART_MAGIC)
|
||||
{
|
||||
grub_dprintf ("partition",
|
||||
"partition %d: bad magic (found 0x%x; wanted 0x%x\n",
|
||||
"partition %d: bad magic (found 0x%x; wanted 0x%x)\n",
|
||||
partno, grub_be_to_cpu16 (apart.magic),
|
||||
GRUB_APPLE_PART_MAGIC);
|
||||
break;
|
||||
|
|
Loading…
Reference in a new issue