mirror of
https://github.com/reactos/reactos.git
synced 2025-02-25 09:50:02 +00:00
fix signed/unsigned comparison warning
svn path=/trunk/; revision=19567
This commit is contained in:
parent
d7d1fde78f
commit
7d45b5479f
1 changed files with 1 additions and 1 deletions
|
@ -610,7 +610,7 @@ CreateOutputFile(FILE *OutFile, void *InData,
|
||||||
{
|
{
|
||||||
RosSymOffset = CurrentSectionHeader->PointerToRawData + CurrentSectionHeader->SizeOfRawData;
|
RosSymOffset = CurrentSectionHeader->PointerToRawData + CurrentSectionHeader->SizeOfRawData;
|
||||||
}
|
}
|
||||||
if (Section == InRelocSectionIndex)
|
if (Section == (ULONG)InRelocSectionIndex)
|
||||||
{
|
{
|
||||||
OutRelocSection = CurrentSectionHeader;
|
OutRelocSection = CurrentSectionHeader;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue