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:
committed by
mergify[bot]
parent
965dbf97ab
commit
2926498f01
@ -1602,7 +1602,7 @@ FileBufferSave (
|
|||||||
//
|
//
|
||||||
// set status string
|
// set status string
|
||||||
//
|
//
|
||||||
Str = CatSPrint (NULL, L"%d Lines Wrote", NumLines);
|
Str = CatSPrint (NULL, L"%d Lines Written", NumLines);
|
||||||
if (Str == NULL) {
|
if (Str == NULL) {
|
||||||
return EFI_OUT_OF_RESOURCES;
|
return EFI_OUT_OF_RESOURCES;
|
||||||
}
|
}
|
||||||
|
@ -368,7 +368,7 @@ HFileImageSave (
|
|||||||
//
|
//
|
||||||
// set status string
|
// set status string
|
||||||
//
|
//
|
||||||
Str = CatSPrint(NULL, L"%d Lines Wrote", NumLines);
|
Str = CatSPrint(NULL, L"%d Lines Written", NumLines);
|
||||||
StatusBarSetStatusString (Str);
|
StatusBarSetStatusString (Str);
|
||||||
FreePool (Str);
|
FreePool (Str);
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user