diff options
author | mdkinney <mdkinney@6f19259b-4bc3-4df7-8a09-765794883524> | 2009-07-12 18:10:44 +0000 |
---|---|---|
committer | mdkinney <mdkinney@6f19259b-4bc3-4df7-8a09-765794883524> | 2009-07-12 18:10:44 +0000 |
commit | c5ce665f74745f1acee4615914cc93134d41f6f5 (patch) | |
tree | a2c5d371f24a80be6bcf9ff3bfa25a0df5924f82 /ShellPkg/Application/ShellCTestApp | |
parent | 94c5492c8a510633b2d78ce7518bca0c1720ebe0 (diff) | |
download | edk2-platforms-c5ce665f74745f1acee4615914cc93134d41f6f5.tar.xz |
Fix signed/unsigned mismatch issue
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@8905 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'ShellPkg/Application/ShellCTestApp')
-rw-r--r-- | ShellPkg/Application/ShellCTestApp/ShellCTestApp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ShellPkg/Application/ShellCTestApp/ShellCTestApp.c b/ShellPkg/Application/ShellCTestApp/ShellCTestApp.c index 8b3762e167..f7bc8ccc85 100644 --- a/ShellPkg/Application/ShellCTestApp/ShellCTestApp.c +++ b/ShellPkg/Application/ShellCTestApp/ShellCTestApp.c @@ -39,7 +39,7 @@ ShellAppMain ( IN CHAR16 **Argv
)
{
- INTN Index;
+ UINTN Index;
Print(L"ShellCTestApp.c:ShellAppMain called with %d parameters\n", Argc);
for (Index = 0; Index < Argc; Index++) {
|