fix signed/unsigned comparison warning
Modified: trunk/reactos/tools/rsym.c
_____
Modified: trunk/reactos/tools/rsym.c
--- trunk/reactos/tools/rsym.c 2005-11-25 18:43:51 UTC (rev 19566)
+++ trunk/reactos/tools/rsym.c 2005-11-25 19:12:04 UTC (rev 19567)
@@ -610,7 +610,7 @@
{
RosSymOffset = CurrentSectionHeader->PointerToRawData +
CurrentSectionHeader->SizeOfRawData;
}
- if (Section == InRelocSectionIndex)
+ if (Section == (ULONG)InRelocSectionIndex)
{
OutRelocSection = CurrentSectionHeader;
}