diff options
author | schweikh <schweikh@FreeBSD.org> | 2002-12-30 21:18:15 +0000 |
---|---|---|
committer | schweikh <schweikh@FreeBSD.org> | 2002-12-30 21:18:15 +0000 |
commit | 86f7487fb6a0b8dd9e3a699ad48d6e99504a67ff (patch) | |
tree | bd0234a8048c844b06483795cfb1fe4d34b68a4f /sbin/fdisk | |
parent | 338583ff7c1145c5e2deba34aed769eb7998286c (diff) | |
download | FreeBSD-src-86f7487fb6a0b8dd9e3a699ad48d6e99504a67ff.zip FreeBSD-src-86f7487fb6a0b8dd9e3a699ad48d6e99504a67ff.tar.gz |
Fix typos, mostly s/ an / a / where appropriate and a few s/an/and/
Add FreeBSD Id tag where missing.
Diffstat (limited to 'sbin/fdisk')
-rw-r--r-- | sbin/fdisk/fdisk.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/fdisk/fdisk.c b/sbin/fdisk/fdisk.c index 22ebd74..db753fd 100644 --- a/sbin/fdisk/fdisk.c +++ b/sbin/fdisk/fdisk.c @@ -1093,7 +1093,7 @@ process_partition(CMD *command) } /* - * Adjust start upwards, if necessary, to fall on an head boundary. + * Adjust start upwards, if necessary, to fall on a head boundary. */ if (partp->dp_start % dos_sectors != 0) { prev_head_boundary = partp->dp_start / dos_sectors * dos_sectors; @@ -1304,7 +1304,7 @@ sanitize_partition(struct dos_partition *partp) return (1); /* - * Adjust start upwards, if necessary, to fall on an head boundary. + * Adjust start upwards, if necessary, to fall on a head boundary. */ if (start % dos_sectors != 0) { prev_head_boundary = start / dos_sectors * dos_sectors; |