mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
add missing typecast
svn path=/trunk/; revision=14793
This commit is contained in:
parent
4fd3eee227
commit
a075aaef57
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue