summaryrefslogtreecommitdiff
path: root/ShellPkg/Library/UefiShellCommandLib/UefiShellCommandLib.c
diff options
context:
space:
mode:
authorPierre Gondois <pierre.gondois@arm.com>2025-09-18 15:13:00 +0300
committerpierregondois <41638958+pierregondois@users.noreply.github.com>2025-10-01 11:02:57 +0300
commitaa29d51637d75aaf398fc8bda60af9726690615c (patch)
treeabb3435d5c571ae7c39630e7a991caeb1b495c7b /ShellPkg/Library/UefiShellCommandLib/UefiShellCommandLib.c
parent9ff74659a8ca73cad7c5c1e32823aad9396ac1be (diff)
downloadedk2-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.c2
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;