ShellPkg/edit: typo "%d Lines Wrote"

REF: https://bugzilla.tianocore.org/show_bug.cgi?id=2379

When a file is saved in the edit command a status message L"%d Lines Wrote"
is displayed. The hexedit command suffers from the same typo.

Change the message to L"%d Lines Written".

Reviewed-by: Philippe Mathieu-Daude <philmd@redhat.com>
Reviewed-by: Zhichao Gao <zhichao.gao@intel.com>
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
This commit is contained in:
Heinrich Schuchardt 2019-11-24 18:33:20 +08:00 committed by mergify[bot]
parent 965dbf97ab
commit 2926498f01
2 changed files with 2 additions and 2 deletions

View File

@ -1602,7 +1602,7 @@ FileBufferSave (
//
// set status string
//
Str = CatSPrint (NULL, L"%d Lines Wrote", NumLines);
Str = CatSPrint (NULL, L"%d Lines Written", NumLines);
if (Str == NULL) {
return EFI_OUT_OF_RESOURCES;
}

View File

@ -368,7 +368,7 @@ HFileImageSave (
//
// set status string
//
Str = CatSPrint(NULL, L"%d Lines Wrote", NumLines);
Str = CatSPrint(NULL, L"%d Lines Written", NumLines);
StatusBarSetStatusString (Str);
FreePool (Str);