From: Benno Schulenberg Date: Thu, 3 Oct 2013 10:41:00 +0000 (+0200) Subject: libfdisk: improve spelling of two comments X-Git-Tag: v2.24-rc2~58 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=88f91eb4d0f4cb0af68cefa8496a2b2ad107c36f;p=thirdparty%2Futil-linux.git libfdisk: improve spelling of two comments Signed-off-by: Benno Schulenberg --- diff --git a/libfdisk/src/bsd.c b/libfdisk/src/bsd.c index a5bfdc3464..19279ad934 100644 --- a/libfdisk/src/bsd.c +++ b/libfdisk/src/bsd.c @@ -749,12 +749,12 @@ static int bsd_write_disklabel(struct fdisk_context *cxt) d->d_checksum = 0; d->d_checksum = bsd_dkcksum(d); - /* Update label with in boot block. */ + /* Update label within boot block. */ memmove(&l->bsdbuffer[BSD_LABELSECTOR * DEFAULT_SECTOR_SIZE + BSD_LABELOFFSET], d, sizeof(*d)); #if defined (__alpha__) && BSD_LABELSECTOR == 0 - /* write the check sum to the end of the first sector */ + /* Write the checksum to the end of the first sector. */ alpha_bootblock_checksum(l->bsdbuffer); #endif if (lseek(cxt->dev_fd, offset, SEEK_SET) == -1) {