From 7c3f003f138afd87bccf3fe080b079edcfcb1080 Mon Sep 17 00:00:00 2001 From: Josh Soref Date: Thu, 20 Jun 2013 11:41:36 -0400 Subject: [PATCH] Spelling: underscores --- src/format.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/format.c b/src/format.c index ae0f23c1..98397610 100644 --- a/src/format.c +++ b/src/format.c @@ -243,7 +243,7 @@ static void ToValidLabel(WCHAR* name, BOOL bFAT) if (name[i] == '_') j++; if (i<2*j) { // If the final label is mostly underscore, use the proposed label - uprintf("FAT label is mostly undercores. Using '%s' label instead.\n", SelectedDrive.proposed_label); + uprintf("FAT label is mostly underscores. Using '%s' label instead.\n", SelectedDrive.proposed_label); for(i=0; SelectedDrive.proposed_label[i]!=0; i++) name[i] = SelectedDrive.proposed_label[i]; name[i] = 0;