]> git.proxmox.com Git - grub2.git/commitdiff
Add a missing ) in patches/903_grub_legacy_0_based_partitions.diff
authorFelix Zielcke <fzielcke@z-51.de>
Tue, 24 Nov 2009 08:34:50 +0000 (09:34 +0100)
committerFelix Zielcke <fzielcke@z-51.de>
Tue, 24 Nov 2009 08:34:50 +0000 (09:34 +0100)
debian/patches/903_grub_legacy_0_based_partitions.diff

index d1b27f2b5c7150cec73705339387e59378fa81a5..18069102c7eab8ff325b7d3f8889f1a828dc5986 100644 (file)
@@ -6,7 +6,7 @@
  
    if (dos_part >= 0)
 -    asprintf (&dos_part_str, ",%d", dos_part + 1);
-+    asprintf (&dos_part_str, ",%d", dos_part + (getenv ("GRUB_LEGACY_0_BASED_PARTITIONS") ? 0 : 1);
++    asprintf (&dos_part_str, ",%d", dos_part + (getenv ("GRUB_LEGACY_0_BASED_PARTITIONS") ? 0 : 1));
  
    if (bsd_part >= 0)
      asprintf (&bsd_part_str, ",%c", dos_part + 'a');