From 98943e25c8d24423c74e4a31d70f274c78e35e51 Mon Sep 17 00:00:00 2001 From: Antoni Villalonga i Noceras Date: Mon, 10 Aug 2020 01:32:51 +0200 Subject: Fix spelling errors --- toys/pending/fdisk.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'toys/pending/fdisk.c') 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; -- cgit v1.2.3