Fix the cast issue

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@3972 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
klu2 2007-09-28 10:11:36 +00:00
parent b9f020e9f9
commit 19ea58a1fd
1 changed files with 1 additions and 1 deletions

View File

@ -403,7 +403,7 @@ Returns:
AsciiString = PeCoffLoaderGetPdbPointer (Pe32Data); AsciiString = PeCoffLoaderGetPdbPointer (Pe32Data);
if (AsciiString != NULL) { if (AsciiString != NULL) {
for (Index = AsciiStrLen (AsciiString) - 1; Index >= 0; Index --) { for (Index = (INT32) AsciiStrLen (AsciiString) - 1; Index >= 0; Index --) {
if (AsciiString[Index] == '\\') { if (AsciiString[Index] == '\\') {
break; break;
} }