aboutsummaryrefslogtreecommitdiff
path: root/toys/pending/fdisk.c
diff options
context:
space:
mode:
authorAntoni Villalonga i Noceras <antoni@friki.cat>2020-08-10 01:32:51 +0200
committerRob Landley <rob@landley.net>2020-08-11 07:24:28 -0500
commit98943e25c8d24423c74e4a31d70f274c78e35e51 (patch)
tree4b1fe94d65fd3902cccc9ad0077eb0ba6f747a1b /toys/pending/fdisk.c
parentefb8060a591b6ed13c16c4034db43652e03f90d5 (diff)
downloadtoybox-98943e25c8d24423c74e4a31d70f274c78e35e51.tar.gz
Fix spelling errors
Diffstat (limited to 'toys/pending/fdisk.c')
-rw-r--r--toys/pending/fdisk.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/toys/pending/fdisk.c b/toys/pending/fdisk.c
index da0a4678..c29a49ee 100644
--- a/toys/pending/fdisk.c
+++ b/toys/pending/fdisk.c
@@ -433,7 +433,7 @@ static void consistency_check(const struct partition *p, int partition)
//Logical and Physical diff
if (g_cylinders <= ONE_K && (physbc != lbc || physbh != lbh || physbs != lbs)) {
- xprintf("Partition %u has different physical/logical beginings (Non-Linux?): \n", partition+1);
+ xprintf("Partition %u has different physical/logical beginnings (Non-Linux?): \n", partition+1);
xprintf("phys = (%u %u %u) ",physbc, physbh, physbs);
xprintf("logical = (%u %u %u)\n", lbc, lbh, lbs);
}
@@ -1157,7 +1157,7 @@ static void move_begning(int idx)
xprintf("Partition %u doesn't have data area\n", idx+1);
return;
}
- sprintf(mesg, "New begining of data (0 - %lld, default %lld): ",
+ sprintf(mesg, "New beginning of data (0 - %lld, default %lld): ",
(long long int)(end), (long long int)(start));
new_start = ask_value(mesg, 0, end, start);
if (new_start != start) {
@@ -1332,7 +1332,7 @@ static void expert_menu(void)
char *msg = "Expert Command ('m' for help): ";
choice = 0x20 | read_input(msg, NULL);
switch (choice) {
- case 'b': //move data begining in partition
+ case 'b': //move data beginning in partition
idx = ask_partition(num_parts);
move_begning(idx - 1);
break;