diff options
Diffstat (limited to 'ShellPkg/Application/ShellCTestApp/ShellCTestApp.c')
-rw-r--r-- | ShellPkg/Application/ShellCTestApp/ShellCTestApp.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/ShellPkg/Application/ShellCTestApp/ShellCTestApp.c b/ShellPkg/Application/ShellCTestApp/ShellCTestApp.c index b945179..e5f7b89 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;
|