summaryrefslogtreecommitdiffstats
path: root/ShellPkg/Application/ShellCTestApp/ShellCTestApp.c
diff options
context:
space:
mode:
Diffstat (limited to 'ShellPkg/Application/ShellCTestApp/ShellCTestApp.c')
-rw-r--r--ShellPkg/Application/ShellCTestApp/ShellCTestApp.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/ShellPkg/Application/ShellCTestApp/ShellCTestApp.c b/ShellPkg/Application/ShellCTestApp/ShellCTestApp.c
index b9451795ff..e5f7b89c62 100644
--- a/ShellPkg/Application/ShellCTestApp/ShellCTestApp.c
+++ b/ShellPkg/Application/ShellCTestApp/ShellCTestApp.c
@@ -29,16 +29,18 @@
INTN
EFIAPI
ShellAppMain (
- IN UINTN Argc,
- IN CHAR16 **Argv
+ IN UINTN Argc,
+ IN CHAR16 **Argv
)
{
UINTN Index;
+
if (Argc == 1) {
Print (L"Argv[1] = NULL\n");
}
+
for (Index = 1; Index < Argc; Index++) {
- Print(L"Argv[%d]: \"%s\"\n", Index, Argv[Index]);
+ Print (L"Argv[%d]: \"%s\"\n", Index, Argv[Index]);
}
return 0;