add missing typecast

svn path=/trunk/; revision=14793
This commit is contained in:
Thomas Bluemel 2005-04-24 20:12:14 +00:00
parent 4fd3eee227
commit a075aaef57

View file

@ -57,7 +57,7 @@ find_rossym_section ( PIMAGE_FILE_HEADER PEFileHeader,
size_t i;
for ( i = 0; i < PEFileHeader->NumberOfSections; i++ )
{
if ( 0 == strcmp ( PESectionHeaders[i].Name, ".rossym" ) )
if ( 0 == strcmp ( (char*)PESectionHeaders[i].Name, ".rossym" ) )
return &PESectionHeaders[i];
}
return NULL;