diff options
| author | Pierre Gondois <pierre.gondois@arm.com> | 2025-09-18 15:13:00 +0300 |
|---|---|---|
| committer | pierregondois <41638958+pierregondois@users.noreply.github.com> | 2025-10-01 11:02:57 +0300 |
| commit | aa29d51637d75aaf398fc8bda60af9726690615c (patch) | |
| tree | abb3435d5c571ae7c39630e7a991caeb1b495c7b /ShellPkg/Library/UefiShellCommandLib/UefiShellCommandLib.c | |
| parent | 9ff74659a8ca73cad7c5c1e32823aad9396ac1be (diff) | |
| download | edk2-aa29d51637d75aaf398fc8bda60af9726690615c.tar.xz | |
ShellPkg: Use the newly introduced ShellPrintDefaultEx() alias
Make use the newly introduced ShellPrintDefaultEx() alias and
replace wherever it is possible:
- "ShellPrintEx (-1, -1,"
with:
- "ShellPrintDefaultEx ("
No functional change is introduced.
Signed-off-by: Pierre Gondois <pierre.gondois@arm.com>
Diffstat (limited to 'ShellPkg/Library/UefiShellCommandLib/UefiShellCommandLib.c')
| -rw-r--r-- | ShellPkg/Library/UefiShellCommandLib/UefiShellCommandLib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ShellPkg/Library/UefiShellCommandLib/UefiShellCommandLib.c b/ShellPkg/Library/UefiShellCommandLib/UefiShellCommandLib.c index 44c2ed91fc..ba85efcb7f 100644 --- a/ShellPkg/Library/UefiShellCommandLib/UefiShellCommandLib.c +++ b/ShellPkg/Library/UefiShellCommandLib/UefiShellCommandLib.c @@ -1978,7 +1978,7 @@ DumpHex ( Val[Index * 3] = 0;
Str[Index] = 0;
- ShellPrintEx (-1, -1, L"%*a%08X: %-48a *%a*\r\n", Indent, "", Offset, Val, Str);
+ ShellPrintDefaultEx (L"%*a%08X: %-48a *%a*\r\n", Indent, "", Offset, Val, Str);
Data += Size;
Offset += Size;
|
