]> git.ipfire.org Git - thirdparty/grub.git/commitdiff
partmap: Remove trailing whitespaces
authorElyes Haouas <ehaouas@noos.fr>
Fri, 4 Mar 2022 06:42:09 +0000 (07:42 +0100)
committerDaniel Kiper <daniel.kiper@oracle.com>
Mon, 14 Mar 2022 14:59:07 +0000 (15:59 +0100)
Signed-off-by: Elyes Haouas <ehaouas@noos.fr>
Reviewed-by: Daniel Kiper <daniel.kiper@oracle.com>
grub-core/partmap/bsdlabel.c
grub-core/partmap/dvh.c
grub-core/partmap/msdos.c
grub-core/partmap/sun.c
grub-core/partmap/sunpc.c

index 1d785906b6a2c5cc89472293a93b08d0b2604409..4e93faf1c1eb952c6e942476f78dc7898333976a 100644 (file)
@@ -132,14 +132,14 @@ bsdlabel_partition_map_iterate (grub_disk_t disk,
     return iterate_real (disk, GRUB_PC_PARTITION_BSD_LABEL_SECTOR, 1,
                         &grub_bsdlabel_partition_map, hook, hook_data);
 
-  if (disk->partition 
+  if (disk->partition
       && (grub_strcmp (disk->partition->partmap->name, "msdos") == 0
          || disk->partition->partmap == &grub_bsdlabel_partition_map
          || disk->partition->partmap == &grub_netbsdlabel_partition_map
          || disk->partition->partmap == &grub_openbsdlabel_partition_map))
       return grub_error (GRUB_ERR_BAD_PART_TABLE, "no embedding supported");
 
-  return iterate_real (disk, GRUB_PC_PARTITION_BSD_LABEL_SECTOR, 0, 
+  return iterate_real (disk, GRUB_PC_PARTITION_BSD_LABEL_SECTOR, 0,
                       &grub_bsdlabel_partition_map, hook, hook_data);
 }
 
index 95c96186c3c1a0067019502f0f3862ca6bc39497..b25ae0d3b17ed9592a0cbae1e92b86b0f1ec0635 100644 (file)
@@ -33,7 +33,7 @@ struct grub_dvh_partition_descriptor
 {
   grub_uint32_t length;
   grub_uint32_t start;
-  grub_uint32_t type;  
+  grub_uint32_t type;
 } GRUB_PACKED;
 
 struct grub_dvh_block
@@ -86,7 +86,7 @@ dvh_partition_map_iterate (grub_disk_t disk,
 
   if (! grub_dvh_is_valid (block.raw))
       return grub_error (GRUB_ERR_BAD_PART_TABLE, "invalid checksum");
-  
+
   /* Maybe another error value would be better, because partition
      table _is_ recognized but invalid.  */
   for (partnum = 0; partnum < ARRAY_SIZE (block.dvh.parts); partnum++)
index 58c3626c623110f18128e1317a321eb40a335301..c85bb74be2bd5a722c74d6ffd3881db0a609de13 100644 (file)
@@ -55,7 +55,7 @@ const char message_warn[][200] = {
                       " avoiding it.  "
                       "This software may cause boot or other problems in "
                       "future.  Please ask its authors not to store data "
-                      "in the boot track") 
+                      "in the boot track")
 };
 
 
@@ -312,7 +312,7 @@ pc_partition_map_embed (struct grub_disk *disk, unsigned int *nsectors,
 
          if (grub_msdos_partition_is_extended (e->type))
            {
-             offset = ext_offset 
+             offset = ext_offset
                + ((grub_disk_addr_t)grub_le_to_cpu32 (e->start)
                   << (disk->log_sector_size - GRUB_DISK_SECTOR_BITS));
              if (! ext_offset)
index aac30a320d233537571fafe295686c2e5b5fdf09..12bf5ba292ad5f804f441eecca19668cecadcb49 100644 (file)
@@ -108,7 +108,7 @@ sun_partition_map_iterate (grub_disk_t disk,
 
   if (! grub_sun_is_valid (block.raw))
       return grub_error (GRUB_ERR_BAD_PART_TABLE, "invalid checksum");
-  
+
   /* Maybe another error value would be better, because partition
      table _is_ recognized but invalid.  */
   for (partnum = 0; partnum < GRUB_PARTMAP_SUN_MAX_PARTS; partnum++)
index 73a430c14b1b1215686de9f9bff439822e69963e..fe9552e2177c04319a448cd0c02ad50a755877b2 100644 (file)
@@ -91,11 +91,11 @@ sun_pc_partition_map_iterate (grub_disk_t disk,
       grub_free (p);
       return err;
     }
-  
+
   if (GRUB_PARTMAP_SUN_PC_MAGIC != grub_le_to_cpu16 (block.sun_block.magic))
     {
       grub_free (p);
-      return grub_error (GRUB_ERR_BAD_PART_TABLE, 
+      return grub_error (GRUB_ERR_BAD_PART_TABLE,
                         "not a sun_pc partition table");
     }