The branch main has been updated by emaste:

URL: 
https://cgit.FreeBSD.org/src/commit/?id=52c68e1625e418e384b6d2d118a22bc3e4529f64

commit 52c68e1625e418e384b6d2d118a22bc3e4529f64
Author:     Ed Maste <ema...@freebsd.org>
AuthorDate: 2023-03-30 14:31:14 +0000
Commit:     Ed Maste <ema...@freebsd.org>
CommitDate: 2023-03-30 15:45:13 +0000

    makefs: Whitespace cleanup to sync with NetBSD
---
 usr.sbin/makefs/cd9660/cd9660_eltorito.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/usr.sbin/makefs/cd9660/cd9660_eltorito.c 
b/usr.sbin/makefs/cd9660/cd9660_eltorito.c
index b60e63ee1b53..0a57c91a659e 100644
--- a/usr.sbin/makefs/cd9660/cd9660_eltorito.c
+++ b/usr.sbin/makefs/cd9660/cd9660_eltorito.c
@@ -540,7 +540,7 @@ cd9660_write_mbr_partition_entry(FILE *fd, int idx, off_t 
sector_start,
 
        if (fseeko(fd, (off_t)(idx) * 16 + 0x1be, SEEK_SET) == -1)
                err(1, "fseeko");
-       
+
        val = 0x80; /* Bootable */
        fwrite(&val, sizeof(val), 1, fd);
 
@@ -610,7 +610,7 @@ cd9660_write_apm_partition_entry(FILE *fd, int idx, int 
total_partitions,
        apm32 = 0;
        /* pmLgDataStart */
        fwrite(&apm32, sizeof(apm32), 1, fd);
-       /* pmDataCnt */ 
+       /* pmDataCnt */
        apm32 = htobe32(nsectors);
        fwrite(&apm32, sizeof(apm32), 1, fd);
        /* pmPartStatus */
@@ -659,9 +659,9 @@ cd9660_write_boot(iso9660_disk *diskStructure, FILE *fd)
                }
                cd9660_copy_file(diskStructure, fd, t->sector, t->filename);
 
-               if (t->system == ET_SYS_MAC) 
+               if (t->system == ET_SYS_MAC)
                        apm_partitions++;
-               if (t->system == ET_SYS_PPC) 
+               if (t->system == ET_SYS_PPC)
                        mbr_partitions++;
        }
 

Reply via email to